1 2 3 a = 10 #it is an integer print(float(a)) #10.0 #it got converted to float datatype print(str(a)) #"10" #now into a string