-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
42 lines (36 loc) · 1.13 KB
/
main.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
from time import sleep
sleep(1)
print('''
.=*#%@@@@@@@@@@@@@@@@@@@@@@@#*=.
-#@@@@#**********************#@@@@#-
.*@@@*-. .:..-*@@@*.
*@@@- +@@@%: -@@@*
@@@* :=*#%%%%#*=: +@@@%: *@@@
@@@* .=%@@@@%##%@@@@%+..:.. +@@@
@@@* :%@@@+:. .:+@@@%: +@@@
@@@* .@@@%. .#@@@. +@@@
@@@* -@@@= -@@@- +@@@
@@@* :@@@*. *@@@: +@@@
@@@* =@@@#-. .-#@@@= +@@@
@@@* :*@@@@#*++*#@@@@#: +@@@
@@@* .=*%@@@@@@%*=. +@@@
#@@@: .... .%@@#
.%@@@=. .=@@@%:
.+@@@@#+==------------------==+#@@@@+.
.-+*%@@@@@@@@@@@@@@@@@@@@@@@@%#+-.
''')
sleep(1)
print("\033[0;31mMade by @xsfrederic\033[m")
print("\033[0;31mCheck who doesn't follow You back!\033[m")
sleep(1)
while True:
enter = int(input("\033[0;34mPress 1 to start or 2 to exit: \033[m"))
if enter == 1:
print("\033[0;32mStarting...\033[m")
exec(open('followScrap.py').read())
break
elif enter == 2:
print("\033[0;31mExiting...\033[m")
break
else:
continue