-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgame.py
48 lines (46 loc) · 1.15 KB
/
game.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Nov 13 13:58:31 2018
@author: manveet
"""
import string
import random
symbols=[]
symbols=list(string.ascii_letters)
card1=[0]*5
card2=[0]*5
pos1=random.randint(0,4)
pos2=random.randint(0,4)
print(pos1)
print(pos2)
#pos1 and pos2 are same symbols in card1 and card2
samesymbol=random.choice(symbols)
symbols.remove(samesymbol)
if(pos1==pos2):
card2[pos1]=samesymbol
card1[pos1]=samesymbol
else:
card1[pos1]=samesymbol
card2[pos2]=samesymbol
card1[pos2]=random.choice(symbols)#in the above line 18 we reoves same symbol beacuse we s=dont want to reapeat the saem thing in this choiceto reapeate
symbols.remove(card1[pos2])
card2[pos1]=random.choice(symbols)
symbols.remove(card2[pos1])
i=0
while(i<5):
if(i!=pos1 and i!=pos2):
alphabet1=random.choice(symbols)
symbols.remove(alphabet1)
alphabet2=random.choice(symbols)
symbols.remove(alphabet2)
card1[i]=alphabet1
card2[i]=alphabet2
i=i+1
print(card1)
print(card2)
h=input("Spot the similar symbol ")
if(h==samesymbol):
print("Right")
else:
print("Wrong")