From 262abe46fc2d9883a4b988a1c85bb3b7faca3653 Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Tue, 9 Mar 2021 10:24:44 -0500 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A=E7=9A=84?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/Comments.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/Comments.py diff --git a/tests/Comments.py b/tests/Comments.py new file mode 100644 index 0000000..de611d7 --- /dev/null +++ b/tests/Comments.py @@ -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!")