我不明白为什么我必须在作为标题或解释的句子前面加上井号键符号这个例子:
# a collection of instructions
# a collection of code
#符号用于记录您的代码。带有#前缀的任何单词或句子等都将被编译器忽略。您可以在python指南简介中找到有关记录代码的更多信息:https://docs.python.org/3.8/tutorial/introduction.html
使用#是在python中记录或注释代码的方式。其他语言使用其他符号,例如“ //”,解释器将忽略该符号之前的任何行。注释也可以在一段代码后显示,如下所示。
# This line is a reminder comment to show what your code is doing or is meant to do.
print ("Whatever you want") #From here on this is a comment.