transform a string to int python code example
Example 1: parse int python
value1 = "10"
value2 = 10.2
print(int(value1))
print(int(value2))
Example 2: convert string to int python
my_string = "50485"
print(int(my_string))
value1 = "10"
value2 = 10.2
print(int(value1))
print(int(value2))
my_string = "50485"
print(int(my_string))