You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.'