PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'''SCHOOL TIME , i mean Kindergarten :)
ROCK PAPER AND SCISSORS ('Edited')
Input format : 'r'/'R' for Rock , 's'/'S' for Scissors and 'p'/'P' for Paper (3 INPUTS IN SEPERATE LINES)
EXAMPLE INPUT 1 : r # r is for rock
s # s is for scissors
p # p is for paper
EXAMPLE INPUT 2 : R # R is also for rock (this code is not case sensitive)
S # S is also for scissors
p # i left this one unaltered to show that the inputmay have both lowercase and uppercase
'p','r'or 's'
Output Format : If i am going to tell you the output , then what is that 'Run' command for ? :)
PLEASE PUT YOUR RESULTS IN THE COMMENTS AND IF YOU FIND THAT SOMETHING CAN BE IMPROVED , PLEASE PUT YOUR SUGGESTIOND THERE AS WELL '''
'''Version 2 : better readability '''
user = str(input()).upper()
user1 = str(input()).upper()
user2 = str(input()).upper())
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run