标签:png 设置 编写 辅助 first 源文件 谷歌 pos 双引号
– 一个项目通常会包含 很多源文件
提示
以 # 开头,# 右边的所有内容都被当做说明文字,而不是真正要执行的程序,辅助说明作用
# 这是第一个单行注释 print("hello python")
为了保证代码的可读性,# 后面建议先添加一个空格,然后再编写相应的说明文字
代码后增加单行注释
print("hello python") # 输出 `hello python`
""" 这是一个多行注释 在多行注释之间,可以写很多很多的内容…… """ print("hello python")
谷歌有对应的中文文档:http://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_style_rules/
标签:png 设置 编写 辅助 first 源文件 谷歌 pos 双引号
原文地址:https://www.cnblogs.com/UFO-blogs/p/8968970.html