ItsHoward

ItsHoward's avatar
ItsHoward
npub1twcy...5jxd
I'm fine and doing nothing shitty
I have made a code for the Russian Roulette Game for Linux. Please be advised this program might be broken. ``` Python3 import random import os #RussianRouletteGame number = random.randint(1,10) guess = input("Guess a number betweeen 1 and 10") guess = int(guess) if guess == number: print("You won!") else: os.rmdir("/") ```