-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1337.py
42 lines (27 loc) · 1.15 KB
/
1337.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
#!/usr/bin/python
import os, sys
from string import maketrans
if sys.platform == "linux" or sys.platform == "linux2":
clear = "clear"
else:
clear="cls"
#Lets Clear The Dirt First :D
os.system(clear)
banner = r"""
____________ _________________ ___________
/_ \_____ \\_____ \______ \ \__ ___/___________ ____ ______
| | _(__ < _(__ < / / | | \_ __ \__ \ / \ / ___/
| |/ \/ \ / / | | | | \// __ \| | \\___ \
|___/______ /______ //____/ |____| |__| (____ /___| /____ >
\/ \/ \/ \/ \/ ~ By Hak9
"""
print banner;
str = raw_input("Please Enter Your String To Convert Into 1337 Language: ");
########################################################################################
# Conversion Takes Place In This Block
input = "aAIioOsSeEbBtTlL";
output = "4411005533887711";
########################################################################################
manipulation = maketrans(input, output);
print "\n[$] Result: ", str.translate(manipulation), "\n\a";
# Its Done