中堂仿做网站,wordpress 分类目录置顶,工业和信息化部反诈中心发短信,长沙房地产交易中心注释和#号 程序里的注释是很重要的。它们可以用自然语言告诉你某段代码的功能是什么。在你想要临时移除一段代码时#xff0c;你还可以用注解的方式将这段代码临时禁用。
# A comment, this is so you can read your program later.
# Anything after the # is ignored by py…注释和#号 程序里的注释是很重要的。它们可以用自然语言告诉你某段代码的功能是什么。在你想要临时移除一段代码时你还可以用注解的方式将这段代码临时禁用。
# 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 wont run.print (This will run.)看到的结果 加分练习
弄清楚”#”符号的作用。而且记住它的名字。(中文为井号英文为 octothorpe 或者pound character)。打开你的 ex2.py 文件从后往前逐行检查。从最后一行开始倒着逐个单词单词检查回去。有没有发现什么错误呢有的话就改正过来.朗读你写的习题把每个字符都读出来。有没有发现更多的错误呢有的话也一样改正过来。