Skip to content

Instantly share code, notes, and snippets.

@tosho
Created October 7, 2016 20:19
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 tosho/2ff27fdb1e5762ea3354496c1ce0702a to your computer and use it in GitHub Desktop.
Save tosho/2ff27fdb1e5762ea3354496c1ce0702a to your computer and use it in GitHub Desktop.
Heads and Tails
n = input('enter "H" or "T": ')
if n.count('H') > n.count('T'):
print('H wins!')
elif n.count('H') < n.count('T'):
print('T wins!')
else:
print('Draw!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment