Update 01.初识Python.md

updtae python code annotation
pull/661/head
chengchen 2020-08-27 16:26:35 +08:00 committed by GitHub
parent cdb7fddd3a
commit d3c81159de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -144,7 +144,8 @@ python3 hello.py
注释是编程语言的一个重要组成部分,用于在源代码中解释代码的作用从而增强程序的可读性和可维护性,当然也可以将源代码中不需要参与运行的代码段通过注释来去掉,这一点在调试程序的时候经常用到。注释在随源代码进入预处理器或编译时会被移除,不会在目标代码中保留也不会影响程序的执行结果。
1. 单行注释 - 以#和空格开头的部分
2. 多行注释 - 三个引号开头,三个引号结尾
2. 多行注释 - 三个双引号开头,三个双引号结尾 / (三个单引号开头,三个单引号结尾)
```Python
"""
@ -154,6 +155,11 @@ python3 hello.py
Version: 0.1
Author: 骆昊
"""
'''
测试多行注释
'''
print('hello, world!')
# print("你好, 世界!")
```