Answers for "Empty a variable without destroying it"

0

Empty a variable without destroying it

n = 20
d = {"x":200}
l = [1,3,5]
t= (5,7,8)
print(type(n)())
print(type(d)())
print(type(l)())
print(type(t)())
Posted by: Guest on March-12-2021

Code answers related to "Empty a variable without destroying it"

Browse Popular Code Answers by Language