''' Purpose: pickup on a printing flexibilty ''' print( 'A' ) # by default a print statement always starts a new line print( 'B' ) print() # The print function has optional info you can give it to change that print( 'A', end=' Alexandra ' ) # the end= makes it so that it prints out the ' ' and does not add a new line as well print( 'B' ) print( 'A', end=',' ) print( 'B', end=',' ) print( 'C' )