tanlie 1 週間 前
コミット
82b1d76d45
1 ファイル変更8 行追加0 行削除
  1. 8 0
      day01/example01.py

+ 8 - 0
day01/example01.py

@@ -0,0 +1,8 @@
+"""
+This is a simple Python script that prints "hello python" to the console.
+It serves as an introductory example for beginners learning Python programming.
+author: tanlie
+"""
+# this is a comment in Python.
+# Comments are ignored by the interpreter and are used to explain the code.
+print('hello python')