tanlie 1 nedēļu atpakaļ
vecāks
revīzija
82b1d76d45
1 mainītis faili ar 8 papildinājumiem un 0 dzēšanām
  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')