Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 178 Bytes

16_args_are_new_references.md

File metadata and controls

9 lines (9 loc) · 178 Bytes

def try_to_change_string(s): ... s = 'The smell of mustard gas and roses.' ... a = 'So it goes.' a 'So it goes.' try_to_change_string(a) a 'So it goes.'