This commit is contained in:
smit-gandhi-itp 2026-05-21 02:53:32 +05:30 committed by GitHub
commit 3e4dd6dda4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

14
hello.py Normal file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env python3
"""
Hello World Python Script
A simple Python script that prints a greeting message.
"""
def main():
"""Main function that prints a hello world message."""
print("Hello, World!")
print("Welcome to the octocat/hello-world repository!")
if __name__ == "__main__":
main()