Answers for "checking if the variable storing same value in python"

0

checking if the variable storing same value in 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))
Posted by: Guest on July-27-2021

Code answers related to "checking if the variable storing same value in python"

Python Answers by Framework

Browse Popular Code Answers by Language