w7r.blogspot.com
Python 3.2 Tutorial #1: Hello World!
Tutorial 1 contents: Code, and explanation for HelloWorld.py followed by useful information about Python in general.
# HelloWorld.py
# Python 3.2 Tutorial Part 1
# w7r.blogspot.com
# Brian R. H.
# the main method/function
def main():
print("Hello World!")
# Call to main function
main()