Python Forum
How to continue in loop until correct input received
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to continue in loop until correct input received
#10
Quote:Sir, by which code loop is getting terminated if right input received?

Error:
Sir if I applied below code in my program then function is showing unresolved name (not linking with function)
        while True:
            fname=input("Enter Father's First name")
            fname = fname.lower()
            if(fname.isalpha()):
                addfname(fname)
                while True:
                    pass
Whereas below code is working fine
        while True:
            name=input("Enter Customer First Name")
            name=name.lower()
            if(name.isalpha()):
                addname(name)
                while True:
                    pass
Reply


Messages In This Thread
RE: How to continue in loop until correct input received - by sunnyarora - May-04-2019, 10:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  WHILE LOOP NOT RETURNING USER INPUT AFTER ZerroDivisionError! HELP! ayodele_martins1 7 1,250 Oct-01-2023, 07:36 PM
Last Post: ayodele_martins1
  Code won't break While loop or go back to the input? MrKnd94 2 1,086 Oct-26-2022, 10:10 AM
Last Post: Larz60+
  WHILE Loop - constant variables NOT working with user input boundaries C0D3R 4 1,598 Apr-05-2022, 06:18 AM
Last Post: C0D3R
Question How to understand the received bytes of ser.read? pf2022 3 2,085 Mar-24-2022, 11:37 AM
Last Post: pf2022
Exclamation question about input, while loop, then print jamie_01 5 2,806 Sep-30-2021, 12:46 PM
Last Post: Underscore
  Attribute Error received not understood (Please Help) crocolicious 5 2,782 Jun-19-2021, 08:45 PM
Last Post: crocolicious
  Stop/continue While loop block Moris526 68 26,942 Mar-28-2021, 09:21 PM
Last Post: Larz60+
  I want to check if the input is str or is int & if it's str repeat the loop HLD202 4 2,883 Nov-23-2020, 11:01 PM
Last Post: perfringo
  Loop back through loop based on user input, keeping previous changes loop made? hbkpancakes 2 3,025 Nov-21-2020, 02:35 AM
Last Post: hbkpancakes
  Python - Most effective way to correct keyboard-user-input. ppel123 8 4,313 Apr-08-2020, 07:41 AM
Last Post: ppel123

Forum Jump:

User Panel Messages

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