example01.py 305 B

12345678
  1. """
  2. This is a simple Python script that prints "hello python" to the console.
  3. It serves as an introductory example for beginners learning Python programming.
  4. author: tanlie
  5. """
  6. # this is a comment in Python.
  7. # Comments are ignored by the interpreter and are used to explain the code.
  8. print('hello python')