convert number to integer in python code example
Example 1: parse int python
value1 = "10"
value2 = 10.2
print(int(value1))
print(int(value2))
Example 2: how to convert int in python
score = 89
score = str(score)
value1 = "10"
value2 = 10.2
print(int(value1))
print(int(value2))
score = 89
score = str(score)