
Take Control – Choose how to license your stuff and who can edit it, track every change
Join Siafoo Now
or
Learn More
Python full Hello World
1
Updated over 10 years ago (03 Dec 2007 at 04:36 AM)
recent activity
In Brief | A Python hello-world with main() function |
Language | Python |
# 's
1#!/usr/bin/python
2
3import sys
4
5def main(argv):
6 print 'Hello World!'
7
8if __name__ == "__main__":
9 main(sys.argv[1:])
A Python hello-world with main() function
Add a Comment