添加注释的程序
This commit is contained in:
parent
cbfe488e7c
commit
262abe46fc
|
@ -0,0 +1,24 @@
|
|||
# Python Comments Example
|
||||
# Author - https://www.ossez.com
|
||||
|
||||
|
||||
print("Hello, CWIKIUS!") # Python 行内注释
|
||||
|
||||
# Python 单行注释
|
||||
print("Hello, CWIKIUS!")
|
||||
|
||||
# Python 多行注释 - LINE 1
|
||||
# Python 多行注释 - LINE 2
|
||||
print("Hello, CWIKIUS!")
|
||||
|
||||
'''
|
||||
Python 多行注释块 - LINE 1
|
||||
Python 多行注释块 - LINE 2
|
||||
'''
|
||||
print("Hello, CWIKIUS!")
|
||||
|
||||
"""
|
||||
Python 多行注释块 - LINE 1
|
||||
Python 多行注释块 - LINE 2
|
||||
"""
|
||||
print("Hello, CWIKIUS!")
|
Loading…
Reference in New Issue