Type Conversion
print(type(str(100))) #(converting a number to a string)
print(type(int(str(500))))
a = str(100)
b = int(a)
c = type(b)
print(c)
#converting the type of our data types
INFO
print(type(str(100))) #(converting a number to a string)
print(type(int(str(500))))
a = str(100)
b = int(a)
c = type(b)
print(c)
#converting the type of our data types