Python Forum
if the input is not number, let user input again
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
if the input is not number, let user input again
#1
hi :) i am starting to learn python, and learning from Automating Boring Stuff With Python, then i tried to implement the knowledge and do something by myself.

i am creating this program that asks user for the age. when i tested the program, i realised if i didn't enter the number correctly as integer, the program would not continue.

so i tried to create a condition for the program to check whether it is integer or not, if not, the user can type again, and then the program would print 'thank you', and continue to print the calculated value, and continue until the end.

however, i am caught up for a lengthy period, so i think i should post a question to ask someone knowledgeable, here are my codes :

 
print('hello there')
print('what is your name?')

myName = input()
print('your name is ' + myName + ', it is nice to meet you')
print('the length of your name is composed of ' + str(len(myName)) + ' letters.')

print('what is your age?')
myAge = input(int())

if myAge == input(int()):
    print('thank you')
else:
    print('please enter the number only')

while myAge != int():
    print('please enter the number only')
    myAge = input(int())
print('thank you')

print('you will be ' + str(int(myAge) + 1) + ' next year')
print('this is the end of this program')
thank you :)
Reply
#2
This is a very common question. At the same time, the answer is not obvious because it forces you to use the exceptions mechanism.
Here is one way to do it
while True:
    try:
        age = int(input("How old are you? "))
    except ValueError:
        print("Invalid value. Please enter an integer! Let's try again...")
    else:
        break

print("You are {} years old.".format(age))
Reply
#3
if you do
input('What is your age? ')
You will get a string.
To test if this string is a number with int(),you might look into try / except / finally clauses.
This way you program will not crash when int() fails.

(But there are many other ways)
Paul
Reply
#4
thank you so much!!!

i am loving the program :) feels so good that it finally runs!!!
Reply
#5
print('hello there')
print('what is your name?')

while True:
    myName = input()
    try:
        if str(myName) == True:
            print('your name is ' + myName + ', it is nice to meet you')
            print('the length of your name is composed of ' + str(len(myName)) + ' letters.')
        else:
            print('Please use the alphabet instead of the number')
        
        continue
        print('what is your age?')

        while True:
            myAge = input()
            try:
                myAge = int(myAge)
                print('thank you')
        
            except ValueError:
                print(f"{myAge} isn't a number. Please enter a number!")
        pass
print('thank you') 
print('you will be ' + str(int(myAge) + 1) + ' next year')
print('this is the end of this program')
Error:
print('thank you') ^ IndentationError: unexpected unindent
Help me how can i solved it?
Reply
#6
Your missing except for the first try statement
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply
#7
print('hello there')
print('what is your name?')
while True:
    myName = input()
    try:
        if str(myName) == True:
            print('your name is ' + myName + ', it is nice to meet you')
            print('the length of your name is composed of ' + str(len(myName)) + ' letters.')
        else:
            print('Please use the alphabet instead of the number')
         
        continue
        print('what is your age?')
 
        while True:
            myAge = input()
            try:
                myAge = int(myAge)
                print('thank you')
            except ValueError:
                print(f"{myAge} isn't a number. Please enter a number!")
        pass
    except:
        print('thank you') 
        print('you will be ' + str(int(myAge) + 1) + ' next year')
        print('this is the end of this program')
it works but it ends first loop and print wrong sentences and don't ask second question also...
Output:
hello there [b]what is your name?[/b] Samuel [b]Please use the alphabet instead of the number[/b]
Reply
#8
Another way. Modified code a little.
#! /usr/bin/env python3.8

while True:
    try:
        my_name = input('What is your name: ')
        if my_name.isdigit():
            print(f'{my_name} is a number. Please use letters for a name.')
            continue
        else:
            print(f'Your name is {my_name}. It\'s nice to meet you')
            print(f'The length of your name is {len(my_name)} letters.')
            break
    except ValueError as error:
        print(f'Error: {error}')
        break

while True:
    try:
        my_age = input(f'{my_name.title()}, what is your age: ')
        if my_age.isalpha():
            print(f'{my_age} is not allowed in age')
            continue
        else:
            age = int(my_age) + 1
            print(f'{my_name.title()} will be {age} next year.')
            break
    except ValueError as error:
        print(f'Error: {error}')
        break
Output:
What is your name: john Your name is john. It's nice to meet you The length of your name is 4 letters. John, what is your age: p p is not allowed in age John is your age: 15 John will be 16 next year.
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply
#9
(May-31-2020, 02:52 PM)menator01 Wrote: Another way. Modified code a little.
#! /usr/bin/env python3.8

while True:
    try:
        my_name = input('What is your name: ')
        if my_name.isdigit():
            print(f'{my_name} is a number. Please use letters for a name.')
            continue
        else:
            print(f'Your name is {my_name}. It\'s nice to meet you')
            print(f'The length of your name is {len(my_name)} letters.')
            break
    except ValueError as error:
        print(f'Error: {error}')
        break

while True:
    try:
        my_age = input('What is your age: ')
        if my_age.isalpha():
            print(f'{my_age} is not allowed in age')
            continue
        else:
            age = int(my_age) + 1
            print(f'You will be {age} next year.')
            break
    except ValueError as error:
        print(f'Error: {error}')
        break
print(f'{my_name.title()} will be {age} next year.')

Friend i want to do like this... Thank you I understood the working logic of some codes like x.isalpha(): , y.isdigit():, while loop must be end with except code, and also When the application is finished, we have to use the "break" command to switch to the other application.

But i ask another question LOL
this programme work perfect but when i enter my name like 15.1 (float) is says:
Output:
What is your name: 15.1 Your name is 15.1. It's nice to meet you The length of your name is 4 letters.
is this float is not a digit ?
Reply
#10
Updated code to check for floats May not be best method but, works
#! /usr/bin/env python3.8

while True:
    try:
        my_name = input('What is your name?: ')
        if my_name.replace('.','').isdigit():
            print(f'{my_name} is a number. Please use letters for a name.')
            continue
        else:
            print(f'It\'s nice to meet you {my_name.title()}')
            print(f'{my_name.title()}, your name is {len(my_name)} letters long.')
            break
    except ValueError as error:
        print(f'Error: {error}')
        break

while True:
    try:
        my_age = input(f'{my_name.title()}, what is your age?: ')
        if my_age.isalpha():
            print(f'{my_name.title()}, {my_age} is not a number.')
            continue
        else:
            age = int(my_age) + 1
            print(f'{my_name.title()}, you will be {age} next year.')
            break
    except ValueError as error:
        print(f'Error: {my_name.title()}, please only use whole numbers for age.')
        continue
Output:
What is your name?: 15.3 15.3 is a number. Please use letters for a name. What is your name?: john It's nice to meet you John John, your name is 4 letters long. John, what is your age?: pop John, pop is not a number. John, what is your age?: 15 John, you will be 16 next year.
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Help with to check an Input list data with a data read from an external source sacharyya 3 318 Mar-09-2024, 12:33 PM
Last Post: Pedroski55
  difference between forms of input a list to function akbarza 6 928 Feb-21-2024, 08:02 PM
Last Post: bterwijn
  pyaudio seems to randomly halt input. elpidiovaldez5 2 312 Jan-22-2024, 09:07 AM
Last Post: elpidiovaldez5
  Receive Input on Same Line? johnywhy 8 607 Jan-16-2024, 03:45 AM
Last Post: johnywhy
  manually input data jpatierno 0 316 Nov-10-2023, 02:32 AM
Last Post: jpatierno
  Using string input for boolean tronic72 3 635 Nov-01-2023, 07:48 AM
Last Post: Gribouillis
  problem in using input command akbarza 4 998 Oct-19-2023, 03:27 PM
Last Post: popejose
  problem in entering address of a file in input akbarza 0 619 Oct-18-2023, 08:16 AM
Last Post: akbarza
  Waiting for input from serial port, then move on KenHorse 2 833 Oct-17-2023, 01:14 AM
Last Post: KenHorse
  Input network device connection info from data file edroche3rd 6 913 Oct-12-2023, 02:18 AM
Last Post: edroche3rd

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020