Advertisement
ijontichy

<stdin>

Mar 25th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. >>> for i in range(ord("a"), ord("z")+1):
  2. ... print(chr(i) + ":", chr(i) in "lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophattoperisteralektryonoptekephalliokigklopeleiolagoiosiraiobaphetraganopterygon")
  3. ...
  4. a: True
  5. b: True
  6. c: True
  7. d: True
  8. e: True
  9. f: False
  10. g: True
  11. h: True
  12. i: True
  13. j: False
  14. k: True
  15. l: True
  16. m: True
  17. n: True
  18. o: True
  19. p: True
  20. q: False
  21. r: True
  22. s: True
  23. t: True
  24. u: False
  25. v: False
  26. w: False
  27. x: False
  28. y: True
  29. z: False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement