# hello_world.py example file # starts comment, like // in C and Java print "hello from python" # three ways to print the same line print 'hello from python' # no extra spaces allowed at beginning of line print "hello", # comma at end prevents new line print "from python"