coupon = {'A1','A2','B1','B2','A3','G7','G8','A0'}
choice1 = input("Enter First coupon code in A1,A2,B1,B2,A3,G7,G8,A0 any of one")
choice2 = input("Enter Second coupon code in A1,A2,B1,B2,A3,G7,G8,A0 any of one")
choice3 = input("Enter Third coupon code in A1,A2,B1,B2,A3,G7,G8,A0 any of one")
i1=0
i2=0
i3=0
i=1
lst1 =[]
for s in coupon:
print(s)
lst1.append(s)
for ls in lst1:
if choice1 ==lst1[0] or choice1 ==lst1[1] or choice1 ==lst1[2]:
i1=1
if choice2 ==lst1[0] or choice2 ==lst1[1] or choice2 ==lst1[2]:
i2=2
if choice3 ==lst1[0] or choice3 ==lst1[1] or choice3 ==lst1[2]:
i3=3
if i1==1 and i2==2 and i3==3:
print("First Prize")
elif i1==1 and i2==2 or i1==1 and i3==3:
print("Second Prize")
elif i1==1 or i2==2 or i3==3:
print("Third prize")
else:
print("Try again")
choice1 = input("Enter First coupon code in A1,A2,B1,B2,A3,G7,G8,A0 any of one")
choice2 = input("Enter Second coupon code in A1,A2,B1,B2,A3,G7,G8,A0 any of one")
choice3 = input("Enter Third coupon code in A1,A2,B1,B2,A3,G7,G8,A0 any of one")
i1=0
i2=0
i3=0
i=1
lst1 =[]
for s in coupon:
print(s)
lst1.append(s)
for ls in lst1:
if choice1 ==lst1[0] or choice1 ==lst1[1] or choice1 ==lst1[2]:
i1=1
if choice2 ==lst1[0] or choice2 ==lst1[1] or choice2 ==lst1[2]:
i2=2
if choice3 ==lst1[0] or choice3 ==lst1[1] or choice3 ==lst1[2]:
i3=3
if i1==1 and i2==2 and i3==3:
print("First Prize")
elif i1==1 and i2==2 or i1==1 and i3==3:
print("Second Prize")
elif i1==1 or i2==2 or i3==3:
print("Third prize")
else:
print("Try again")
#Dice Game
ReplyDeleteimport threading
import time
import random
class A(threading.Thread):
def _init__(self):
super(A,self).__init__()
def run(self):
scr1 = 0
self.c1 = 0
f1 = True
while f1:
self.p1 = input("Press S to start game and E to end the game = ")
if self.p1 == 's' :
x1 = random.randint(1,8)
print("Number is = " + str(x1))
scr1 = scr1 + x1
self.c1 =self.c1 +1
print("Your score is = " + str(scr1))
if self.p1 =='e':
print("Game Over")
break
if scr1>=20:
print("PLAYER 1 TRIED = ",str(self.c1)," TIMES")
break
class B(threading.Thread):
def __init__(self):
super(B,self).__init__()
def run(self):
scr2 = 0
self.c2 = 0
f2 =True
while f2:
self.p2 = input("Press S to start game and E to end the game = ")
if self.p2 == 's':
x2 = random.randint(1,8)
print("Number is = " +str(x2))
scr2 = scr2 + x2
self.c2 =self.c2 +1
print("Your Score is = " +str(scr2))
if self.p2 == 'e':
print("Game Over")
break
if scr2>=20:
print("PLAYER 2 TRIED = ",str(self.c2), " TIMES")
f2 = False
t1 =A()
t1.start()
t1.join()
t2 =B()
t2.start()
t2.join()