Python培训
400-996-5531
我们在用Python写程序的时候注释是很必要的。它们可以帮助其他人轻松看懂某段代码的功能是什么。在你想要临时移除一段代码时,你也可以用注解的方式将这段代码临时禁用,让程序不被执行。
今日的练习将让你学会注释:
1 # A comment, this is so you can read your program later.
2 # Anything after the # is ignored by python.
3
4 print "I could have code like this." # and the comment after is ignored 5
6 # You can also use a comment to "disable" or comment out a piece of code:
7 # print "This won't run." 8
9 print "This will run."
在你的编程工具中输入上面的内容,你将得到下面的结果,如果不是下面的结果一定是你哪里搞错了。
$ python ex2.py I could have code like this. This will run. $
免责声明:内容和图片源自网络,版权归原作者所有,如有侵犯您的原创版权请告知,我们将尽快删除相关内容。
填写下面表单即可预约申请免费试听! 怕学不会?助教全程陪读,随时解惑!担心就业?一地学习,可全国推荐就业!
Copyright © 京ICP备08000853号-56 京公网安备 11010802029508号 达内时代科技集团有限公司 版权所有
Tedu.cn All Rights Reserved