Here is the Code to convert Integer Data type or Float Data type into String Data Type
number_int = 10
number_float = 10.10
numberInt_string =str(number_int)
numberFloat_string =str(number_float)
print(numberFloat_string)
print(numberInt_string)
Tags:
Python