摘要:
有的时候,在调试代码的时候,需要输出很多的Output。 但是调试完毕后,并不想继续输出这些调试信息。比如如下代码内容,将会输出100行的内容: for i in range(100): print(i, i**2) 如果想要不输出Output的话,只要在代码中加入%%capture即可,如下所示: 阅读全文
摘要:
Python官网地址:https://www.python.org/ Windows help file 帮助文档Windows x86-64 embeddable zip file 64位系统,嵌入式版本,可以集成到其它应用中Windows x86-64 executable installer 阅读全文