-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMATRIX.py
More file actions
25 lines (24 loc) · 796 Bytes
/
Copy pathCMATRIX.py
File metadata and controls
25 lines (24 loc) · 796 Bytes
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
# Program edited by EmanZR. It is an adaptation of the package "CMATRIX" on Debian, which is also the name of our team in the CSAW'19
def cmatrix(a):
for i in range(a):
print("R")
print(" *")
print(" $")
print(" 9")
print(" <")
print(" =")
print(" ~")
print(" M")
print(" Q")
print(" Z")
print(" `")
print(" @")
print(" ]")
print(" |")
print(" #")
print(" ]")
print(" ;")
print(" q")
print(" ^")
print(" .")
print(" 7")