Bladeren bron

hello world

tanlie 1 week geleden
bovenliggende
commit
82b1d76d45
1 gewijzigde bestanden met toevoegingen van 8 en 0 verwijderingen
  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')