笨办法学 Python(第三版)习题 2: 注释和#号

Posted 互联网小队

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了笨办法学 Python(第三版)习题 2: 注释和#号相关的知识,希望对你有一定的参考价值。

参考书籍

代码

# -*- coding: utf-8 -*-

# A comment, this is so you can read your program later.
# Anything after the # is ignored by python.

print("I could have code like this.") # and the comment after is ignored

# You can also use a comment to "disable" or comment out a piece of code:
# print "This won't run."

print("This will run.")
$ python ex2.py 
I could have code like this.
This will run.
$

加分习题

常见问题回答

以上是关于笨办法学 Python(第三版)习题 2: 注释和#号的主要内容,如果未能解决你的问题,请参考以下文章

笨办法学 Python(第三版)习题 14: 提示和传递

笨办法学 Python(第三版)习题 3: 数字和数学计算

笨办法学 Python(第三版)习题 5: 更多的变量和打印

笨办法学 Python(第三版)习题 4: 变量(variable)和命名

笨办法学 Python(第三版)习题 11: 提问

笨办法学 Python(第三版)习题 11: 提问