Answers for "how do i add limitations in inputs in python"

0

how do i add limitations in inputs in python

while True:    
    try:
        hp_cur=int(input("Enter the current number of HP (1-75): "))
    except ValueError: # used to check whether the input is an int
        print("please insert a int type number!")
    else: # is accessed if the input is a int
        if hp_cur < 1 or hp_cur > 75:
            print("please insert a number in the given limit")
        else: # if number is in limit, break the loop
            break
Posted by: Guest on August-31-2021
0

how do i add limitations in inputs in python

hp_cur=int(input("Enter the current number of HP (1-75): "))
hp_max= int(input("Enter the maximum number of HP (1-75): "))
hp_dif=(hp_max-hp_cur)
Posted by: Guest on August-31-2021

Code answers related to "how do i add limitations in inputs in python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language