-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsanta.py
29 lines (24 loc) · 1.17 KB
/
santa.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import random
print("""\
\x1b[1;31m(((((((
((((((((((((((((((
(((((((((#### (((((
((((((((((((((( (((\x1b[0m
.................... ......
.................... ......
...../..../..../....
\x1b[1;32m(((\x1b[0m%#\x1b[1;32m(((((((((\x1b[0m##\x1b[1;32m((\x1b[0m
\x1b[1;32m((((((\x1b[0m...&&\x1b[1;32m(((((\x1b[0m&&...\x1b[1;32m((((((\x1b[0m
\x1b[1;32m((((\x1b[0m&\x1b[1;32m(((((\x1b[0m..\x1b[1;32m(((((((\x1b[0m..\x1b[1;32m(((((\x1b[0m&\x1b[1;32m((((\x1b[0m
\x1b[1;32m(((((\x1b[0m&&\x1b[1;32m(((((((\x1b[0m&&&&&\x1b[1;32m(((((((\x1b[0m&&\x1b[1;32m(((((\x1b[0m
\x1b[1;32m((((((\x1b[0m&&\x1b[1;32m(((((((((((((((\x1b[0m&&\x1b[1;32m((((((\x1b[0m
\x1b[1;32m((((((\x1b[0m&&&\x1b[1;32m((((((\x1b[0m#&&&\x1b[1;32m((((((\x1b[0m
\x1b[1;32m(((((((\x1b[0m&&&\x1b[1;32m(((((((\x1b[0m
\x1b[1;32m(((((\x1b[0m
""")
homies=['a', 'b', 'c', 'd', 'e']
copy_homies= homies.copy()
for h in homies:
k=random.choice([a for a in copy_homies if a != h])
print(h+' to '+k)
del copy_homies[copy_homies.index(k)]