-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDobbleGame.py
More file actions
57 lines (43 loc) · 988 Bytes
/
DobbleGame.py
File metadata and controls
57 lines (43 loc) · 988 Bytes
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
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
"""
Spyder Editor
Simple Dobble Game.
"""
import random
import string
symbols=[]
symbols=list(string.ascii_letters)
#print(symbols)
card1=[0]*5
card2=[0]*5
pos1=random.randint(0,4)
pos2=random.randint(0,4)
samesymbol=random.choice(symbols)
symbols.remove(samesymbol)
if(pos1==pos2):
card2[pos2]=samesymbol
card1[pos1]=samesymbol
else:
card1[pos1]=samesymbol
card2[pos2]=samesymbol
card1[pos2]=random.choice(symbols)
symbols.remove(card1[pos2])
card2[pos1]=random.choice(symbols)
symbols.remove(card2[pos1])
i=0
while(i<5):
if( (i!=pos1) and (i!=pos2) ):
alpha1=random.choice(symbols)
symbols.remove(alpha1)
alpha2=random.choice(symbols)
symbols.remove(alpha2)
card1[i]=alpha1
card2[i]=alpha2
i=i+1
print (card1)
print (card2)
ch=input("Spot the same common symbol: ")
if(ch==samesymbol):
print ("You Won")
else:
print ("You Loose")