""" Purpose: demonstrate user communication """ # programs will be saved when you run them!!! # Display haiku print( "Help not needed", "07452", "Lists are cool" ) # comma separation adds a space :) we love whitespace print() # what could this do? it'll print a blank line # print() always ends by moving to the next line (for now...) print( "Do not be afraid" ) print( "Do not hide what makes you, you" ) print( "You are welcomed here" ) # we need to have rules. python's rules are top to bottom # we write from left to right on every line