Answers for "convert string to int python in if"

3

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')
Posted by: Guest on December-27-2020
1

convert string to integer in python

int_var = int(string_var)
Posted by: Guest on April-16-2021

Code answers related to "convert string to int python in if"

Python Answers by Framework

Browse Popular Code Answers by Language