Answers for "how to change python input str to int"

0

how to convert python input to int

# Any input taken by python is always taken as a string.
# To convert it to an integer, we have to wrap input() in int(). Example:

num1 = int(input("Enter a number: "))
num2 = int(input("Enter another number: "))
total = num1 + num2
print(f'Sum: {total}')
Posted by: Guest on September-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language