Guest User

Untitled

a guest
Oct 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. charlist = ['a','b']
  2.  
  3. for el in charlist:
  4. if el is'a' or 'A':
  5. print('a is done')
  6. if el is 'b' or 'B':
  7. print('b is done')
  8. if el is 'c' or 'C':
  9. print('why c?')
Add Comment
Please, Sign In to add comment