Python Forum
shorten an if condition
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
shorten an if condition
#1
Is there a way to write this in short and clean way:
if (x == 'a') or (x == 'e') or (x == 'i') or (x == 'o') or (x == 'u'):
Reply
#2
if x in 'aeiou':
Reply
#3
Conventional way is something like:

if x in 'aieou':
    # do something
EDIT: ninjad by deanhystad
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Forum Jump:

User Panel Messages

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