Skip to content

Instantly share code, notes, and snippets.

@konabe
Created August 22, 2017 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konabe/5715612dd5344def435e07c79ba91911 to your computer and use it in GitHub Desktop.
Save konabe/5715612dd5344def435e07c79ba91911 to your computer and use it in GitHub Desktop.
char = 'a'
if char in ('z', 'Z',):
#alternative writing
#char == 'z' or char == 'Z':
print('The char is last one.')
char = 'a'
if char == 'z' or 'Z':
print('The char is last one.')
# The char is last one.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment