Is it possible to create a pointer in Python to make a variable equal to a string after that string is changed elsewhere? Something like this below concept:
a = 'hello'
b = a
a = 'bye'
print(b) # is it possible have b be 'bye' without simply doing b = a again?