Browse Source

hello world

tanlie 1 tuần trước cách đây
mục cha
commit
82b1d76d45
1 tập tin đã thay đổi với 8 bổ sung0 xóa
  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')