PPaste!

2nd code

Home - All the pastes - Authored by Thooms

Raw version

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
import random
r = random.randint(1, 3)
a = random.randint(1, 3)
rol = ['Natural or seven out', 'Easy eight', "Nine('Nina')", "Easy ten", "Yo(Yo-Eleven)", "Boxcars"]
rol2 = ['Natural or seven out', 'Easy eight', "Nine('Nina')", "Easy ten", "Yo(Yo-Eleven)", "Boxcars"]
rol3 = ['Natural or seven out', 'Easy eight', "Nine('Nina')", "Easy ten", "Yo(Yo-Eleven)", "Boxcars"]
shuffle = random.choices(rol)
shuffle2 = random.choices(rol2)
shuffle3 = random.choices(rol3)
if r == 1:
    print(r, shuffle)
if r == 2:
    print(r, shuffle, shuffle2)
if r == 3:
    print(r, shuffle, shuffle2, shuffle3)
if a == 1:
    print(a, shuffle)
if a == 2:
    print(a, shuffle, shuffle2)
if a == 3:
    print(a, shuffle, shuffle2, shuffle3)