Код: Выделить всё
map1 = "dust2"
the_best_map = map1
print(map1)
print(the_best_map)
del map1
print(the_best_map)
Код: Выделить всё
dust2
dust2
dust2
Спасибо!
Подробнее здесь: https://stackoverflow.com/questions/759 ... -an-output
Код: Выделить всё
map1 = "dust2"
the_best_map = map1
print(map1)
print(the_best_map)
del map1
print(the_best_map)
Код: Выделить всё
dust2
dust2
dust2