''' Purpose: demonstrate program user communication Author: Jim Cohoon <<<< a header comment Email id: jpc ''' # display haiku print( 'Look before you sit' ) # you will raise an indentation error if you do not start the statement # WHITESPACE # makes your code look neat # in column one print() # syntax is important; your code will not compile otherwise # WHITESPACE print( 'How was I to know' ) # 'How was I to know' = literal string print( 'Person sitting next to me' ) # strings without quotations are variables, but these have not been created!! print('Would become my spouse') # the spacing in between the string and the function is for style -- WHITESPACE! print() # this is for whitespace # the default action for a print statement is to move the console to a new line print ( ' -- JPC' ) # Check out pythontutor.com!!