添加注释的程序

This commit is contained in:
YuCheng Hu
2021-03-09 10:24:44 -05:00
parent cbfe488e7c
commit 262abe46fc
+24
View File
@@ -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!")