Проверка, если переменная хранит то же значение в Python

for_test = "Grepper"
for_test2 = "Grepper"

print("The adress of for_test is ",id(for_test))
print("The abress of for_test2 is ",id(for_test2))
Programmer of empires