convert integer into float python code example
Example 1: int to float python
a = 5
a = float(a) # int to float
Example 2: how to convert int in python
score = 89
score = str(score)
a = 5
a = float(a) # int to float
score = 89
score = str(score)