在python中插入#符号函数的目的是什么

问题描述 投票:-6回答:2

我不明白为什么我必须在作为标题或解释的句子前面加上井号键符号这个例子:

# a collection of instructions
# a collection of code
python hash symbols
2个回答
0
投票

#符号用于记录您的代码。带有#前缀的任何单词或句子等都将被编译器忽略。您可以在python指南简介中找到有关记录代码的更多信息:https://docs.python.org/3.8/tutorial/introduction.html


0
投票

使用#是在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.
© www.soinside.com 2019 - 2024. All rights reserved.