Rosyjska ruletka Pythona

import random

if random.randint(1, 6) == 6:
    print('You lost')
else:
    print('You won')
Concerned Cormorant