Advertisement
morimoto_ltd

Untitled

Sep 28th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. action_input = input()
  2. actions_map = {('q', 'Q', 'й', 'Й') : 'hit',
  3.                ('w', 'W', 'ц', 'Ц') : 'hard_hit',
  4.                ('e', 'E', 'у', 'У') : 'heal'}
  5. print(action_input)
  6. print(actions_map.get(action_input))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement