This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
en_us_winning = [ | |
"Rock OBLITERATES scissors!", | |
"Paper SMOTHERS rock!", | |
"Scissors EVISCERATES paper!" | |
] | |
en_us = [ | |
"Rock, Paper, or Scissors?", | |
"Player", | |
"Enter choice", | |
"Invalid choice.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] | |
b = [ num for num in a if num%2==0 ] |