mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-04 14:17:09 +00:00
15 lines
311 B
Python
15 lines
311 B
Python
#!/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()
|