Python Forum
Error in Python script
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error in Python script
#4
The result of input() is always a string, so there is nothing a user can enter that will satisfy your first if statement. You need to convert the input to a float or int as needed. If you are expected to account for invalid input, there are ways of testing whether the user's input can be converted successfully (is not letters instead of numbers, for example), and/or ways of handling any exception that occurs when you try to convert it.
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,446 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