From 64983c858acd1c668eda0a14f7a7bcf8c04d0627 Mon Sep 17 00:00:00 2001 From: MRELEC1R0N Date: Sat, 25 Nov 2023 16:58:56 +0530 Subject: [PATCH] stone paper seasers game --- stone.py | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 stone.py diff --git a/stone.py b/stone.py new file mode 100644 index 0000000..e2d0280 --- /dev/null +++ b/stone.py @@ -0,0 +1,37 @@ +import random +from re import A + +from regex import B + + + +''' +print('-----------------> welcome to the game<-----------------') +a1 = int(input('how many turns you want :- ')) +print('[+]for stone type --> a \n[+]for paper type --> b \n[+]for seasers type --> c' ) +ar =input('[+]TYPE HERE--->') + + + +if ar == 'a' : + print('[+]YOU CHOSE STONE') + +if ar == 'b': + print('[+]YOU CHOSE PAPER') + +if ar == 'c': + print('[+]YOU CHOSE SEASERS') + +''' +a = 'stone' + +b = 'paper' + +c = 'seasers' + +lst = [a,b,c] + +comot = random.choice(lst) +print(comot) + +