fork(9) download
  1. def vogal (v):
  2. if v in "aeiou":
  3. return True
  4. else:
  5. return False
  6.  
  7. print(vogal('e'))
  8. print(vogal('b'))
  9.  
Success #stdin #stdout 0.02s 9300KB
stdin
Standard input is empty
stdout
True
False