Advertisement
| 1 | # Hello World Example |
| 2 | print("Hello, World!") |
| 3 | |
| 4 | # Function example |
| 5 | def greet(name): |
| 6 | return f"Hello, {name}!" |
| 7 | |
| 8 | # Main execution |
| 9 | if __name__ == "__main__": |
| 10 | print(greet("TutPaste")) |
| 11 |
Copied to clipboard!