n = 230
print("Data Type of n :: ", type(n))
n = 10.25
print("Data Type of n :: ", type(n))
str = "Aubdur Rob Anik"
print("Data Type of str :: ", type(str))
b = True
print("Data Type of b :: ", type(b))
n = 230
print("Data Type of n :: ", type(n))
n = 10.25
print("Data Type of n :: ", type(n))
str = "Aubdur Rob Anik"
print("Data Type of str :: ", type(str))
b = True
print("Data Type of b :: ", type(b))
Comments
Post a Comment