x = 'John' y = x #print(' x holds ' , x, ', y holds', y ) print (f'x holds {x}, y holds {y}') x = 'Smith' print (f'x holds {x}, y holds {y}')