添加注释的程序

This commit is contained in:
YuCheng Hu 2021-03-09 10:24:44 -05:00
parent cbfe488e7c
commit 262abe46fc
No known key found for this signature in database
GPG Key ID: 1E5CBEF8B550FB7D
1 changed files with 24 additions and 0 deletions

24
tests/Comments.py Normal file
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!")