python convert string to integer if it is a integer code example
Example 1: check if string can be converted to int python
variable='3'
try:
int(variable)
print('You typed an int')
except ValueError:
print('You did not type an int')
variable='3'
try:
float(variable)
print('You typed a float')
except ValueError:
print('You did not type a float')
Example 2: how to convert string to int in python
>>> string = '123'
>>> type(string)
<class 'str'>
>>> integer = int(string)
>>> type(integer)
<class 'int'>
>>> float_number = float(string)
>>> type(float_number)
<class 'float'>
>>> print(string, integer, float_number)
123 123 123.0