I was just trying to recreate the trending game buckshot roulettebut a error just coming up and I don't know how to fix it
I tried o recreate it but the error just on comingThis is the code:
a=input("Enter Your Number=")l=("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz")if (a in l ): print("It is Not a number")else: print("Welcome experiment no. ", a) print("Welcome to buckshot roulette") print("In this experiment, you are given a shotgun with set amount of live and blank which can sum upto 8 shots only") print("Then you have either shoot yourself or the object. If you shoot yourself and it is a blank then the objects turns skips and then your turn again.") print("But if it was live shot then you loose a life but if you choose to shoot the object then' its life gets deducted") print("After every reload, it starts with you only") print("Let's the experiment begin") import random bullets=(1,2,3,4,5,6,7,8) number=(random.choice(bullets)) import random live=(random.choice(number)) blank=(number-live) print("The shotgun has ",live," shots and has ",blank," shots in the chamber")
The output:the output