-
Notifications
You must be signed in to change notification settings - Fork 0
/
printd.py
59 lines (53 loc) · 1 KB
/
printd.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
for i in range(50):
print("-",end="")
print()
def print_large_text(text):
letters = {
'D': r'''
DDDDD
D D
D D
D D
D D
D D
DDDDD
''',
'U': r'''
U U
U U DUCKDUCKSCAN
U U Created By - WhitewolfX01
U U DuckDuckScan is a tool used for host discovery and port scanning over a network
U U
U U Check out more tools at :- https://github.com/WhitewolfX01/
UUUUU
''',
'C': r'''
CCCC
C
C
C
C
CCCC
''',
'K': r'''
K K
K K
K K
KKK
K K
K K
K K
'''
}
for letter in text:
if letter in letters:
print(letters[letter], end=' ')
else:
print(' ', end=' ') # Print space for unsupported characters
print() # Move to the next line after printing the text
text_to_print = "DUCK"
print_large_text(text_to_print)
for i in range(50):
print("-",end="")
print()
print()