- """
- 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')
|