''' Purpose: demonstrate the end optional parameter for print() ''' import time NBR_SECONDS_TO_PAUSE = 2.5 print( 'Wa-Hoo-Wa' ) print( 'Rah-Rah-Rah' ) print() time.sleep( NBR_SECONDS_TO_PAUSE ) print( 'Wa-Hoo-Wa', end='!!!' ) print( 'Rah-Rah-Rah' ) print() time.sleep( NBR_SECONDS_TO_PAUSE ) print( 'Wa-Hoo-Wa', end=' !!! ' ) print( 'Rah-Rah-Rah' ) print() time.sleep( NBR_SECONDS_TO_PAUSE ) for ch in 'tattarrattat' : print( ch, end='-' ) print() print() time.sleep( NBR_SECONDS_TO_PAUSE ) for ch in 'saippuakivikauppias' : print( ch, end='' ) print() print()