""" Purpose: demonstrate user communication """ # Display haiku print( "Camouflage not needed" ) # Title of haiku. We can have multiple print() statements in one file # the space on either side of the string (and between the parenthesis) isn't necessary. # this is called whitespace. we use whitespace so that our code is more readable for other humans # using "" or '' is your choice for strings. however, you may prefer one over the other depending # on your string. ex: "This ain't cool". using double quotes allows us to use the apostrophe in ain't # another ex: 'He said "This is cool"' allows us to use double quotes in the string # note that we close with the same ' or " that we started with print() # blank line (nothing in the parenthesis). After each print(), there is a hidden new-line # so an empty print() will print nothing, then move to a new line print( "Do not be afraid" ) print( "Do not hide what makes you, you" ) print( "You are welcomed here" )