# File: ChapterStrings/HelloWorld.py # launch IDLE (Python 3.4 GUI - 32 bit) # just type a couple of things to see if it works # open the file: HelloWorld.py and then F5 (Run Module) """ Examples: >>> 3+4 7 >>> "Alan Turing" 'Alan Turing' >>> 'Alan turing' 'Alan turing' >>> x=3 >>> x 3 >>> x + x 6 >>> x = [2,0,1,6] >>> x [2, 0, 1, 6] >>> x=['a','b','c'] >>> x ['a', 'b', 'c'] >>> x + x ['a', 'b', 'c', 'a', 'b', 'c'] """ print("Hello World!") # your first program=one statement