Python Forum
Error in Python script
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error in Python script
#11
I agree with buran that your assignment is a bit too vague. It tells you to check the user's input, but not what to check for or or how to respond to invalid input.

I'd do something like this:
while True:
    try:
        temp = float(input("Enter your dog's age: "))
        break
    except ValueError:
        print('Invalid input! Please enter numbers only.')
This will keep prompting until the user enters something that can be converted to a float.
Reply


Messages In This Thread
Error in Python script - by garvind25 - May-23-2020, 07:40 PM
RE: Error in Python script - by buran - May-23-2020, 07:53 PM
RE: Error in Python script - by garvind25 - May-23-2020, 09:31 PM
RE: Error in Python script - by GOTO10 - May-23-2020, 10:56 PM
RE: Error in Python script - by garvind25 - May-24-2020, 05:15 PM
RE: Error in Python script - by pyzyx3qwerty - May-24-2020, 05:34 PM
RE: Error in Python script - by buran - May-24-2020, 05:47 PM
RE: Error in Python script - by GOTO10 - May-24-2020, 09:04 PM
RE: Error in Python script - by garvind25 - May-25-2020, 06:02 PM
RE: Error in Python script - by buran - May-25-2020, 06:34 PM
RE: Error in Python script - by GOTO10 - May-25-2020, 08:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Re-write BASH script to Python script popi75 5 2,542 Apr-30-2021, 03:52 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

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