Example 1: python convert character to integer
>>> chr(97)
'a'
>>> ord('a')
97
>>> int('1')
1
Example 2: python input integer
valid = False
while not valid:
try:
x = int(input('Enter an integer: '))
valid = True
except ValueError:
print('Please only input digits')
Example 3: how to get int input in python
num = int(input("inter your number: "))
print(num)
Example 4: user input of int type in python
num1 = int(input("Enter a number of type int"))
print(num1)
Example 5: how to make string to int in python
string = "324501763"
integer = int(string)
Comments
Post a Comment