python convert string in int code example

Example 1: check if string can be converted to int python

# CHECKING IF INT
variable='3'
try:
    int(variable)
    # this will execute if it is integer
    print('You typed an int')
except ValueError:
  	# otherwise this will execute
    print('You did not type an int')

# CHECKING IF FLOAT
variable='3'
try:
    float(variable)
    print('You typed a float')
except ValueError:
    print('You did not type a float')

Example 2: python string to int

# Use the function int() to turn a string into an integer
string = '123'
integer = int(string)
integer
# Output:
# 123

Example 3: how to turn a string into an integer python

a_string = "1234"
a_int = int(a_string)

Example 4: convert string to int python

my_string = "50485"
print(int(my_string))

Tags:

Java Example