Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
if clause fails
#10
Then you need to decide what you will do with the blank values. The best way to handle this is generally a try/except block:

try:
   value = int(something)
except ValueError:
   # handle blank input.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
if clause fails - by DeadCthulhuWaitsDreaming - Apr-07-2019, 06:38 PM
RE: if clause fails - by Yoriz - Apr-07-2019, 07:12 PM
RE: if clause fails - by DeadCthulhuWaitsDreaming - Apr-07-2019, 07:29 PM
RE: if clause fails - by ichabod801 - Apr-07-2019, 07:30 PM
RE: if clause fails - by DeadCthulhuWaitsDreaming - Apr-07-2019, 07:34 PM
RE: if clause fails - by ichabod801 - Apr-07-2019, 07:46 PM
RE: if clause fails - by DeadCthulhuWaitsDreaming - Apr-07-2019, 08:08 PM
RE: if clause fails - by ichabod801 - Apr-07-2019, 08:13 PM
RE: if clause fails - by DeadCthulhuWaitsDreaming - Apr-07-2019, 08:20 PM
RE: if clause fails - by ichabod801 - Apr-07-2019, 08:24 PM
RE: if clause fails - by DeadCthulhuWaitsDreaming - Apr-07-2019, 09:19 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to use the LIKE clause in Python Columbo 9 1,679 Oct-09-2022, 10:22 PM
Last Post: Larz60+
  SQL Query is not executing WHERE clause hammer 7 2,389 Nov-15-2021, 01:44 PM
Last Post: hammer
  How does this if clause work? Pedroski55 3 2,321 Jun-10-2021, 06:31 AM
Last Post: Gribouillis
  can i raise an exception in a try clause? Skaperen 14 5,812 Dec-19-2019, 12:29 AM
Last Post: Skaperen
  pass captured value from input() to where clause metro17 5 3,310 Sep-09-2019, 05:24 AM
Last Post: metro17
  finally clause Skaperen 6 3,912 Jun-02-2019, 09:02 PM
Last Post: snippsat
  how to code in Python "where" clause of SAS FelixS 2 2,827 Mar-26-2019, 04:59 PM
Last Post: FelixS
  break Statements and else Clause on Loops Phytonnewbie 2 2,819 Mar-02-2018, 09:50 AM
Last Post: buran
  My else clause doesn't work (general help) NMW 10 8,017 Jul-17-2017, 01:07 AM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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