''' Purpose: continue string manipulation introduction ''' # operator + when given a string and non-string operands throws up water = 'H' + 2 + 'O' print( water ) # built-in function str() returns a text representatiom of its argument water = 'H' + str( 2 ) + 'O' print( water )