Python中的注释
在python中,注释用井号(#)标识。井号后面的内容都会被Python解释器忽略,
例如:
#向大家问好
print("Hello Python people!")
输出结果为:
Hello Python people!
Python中的注释
在python中,注释用井号(#)标识。井号后面的内容都会被Python解释器忽略,
例如:
#向大家问好
print("Hello Python people!")
输出结果为:
Hello Python people!