-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
44 lines (33 loc) · 960 Bytes
/
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
43
44
'''
# Fake Crash Python file for Pranking 😂
# Author GitHub: @Abhijith-Sudhakaran
# Instagram - @hypercat_ext
'''
import colorama
import datetime
from colorama import Fore
from datetime import datetime
current_dateTime = datetime.now()
x = 8
y = 5
while y <= x:
print(Fore.RED, current_dateTime.hour,':', current_dateTime.minute,':', current_dateTime.second, "|", "Address : System Crashed,✓ internal error caused by undefined variables while lopping. Printing...")
'''
# If you want print these function in one line use `break` function as mentioned below.
# if you want to change colour of the line.
# • change - Fore.<colour>
# • Eg- print(Fore.RED, <text>) - Red Colour
# -> Available Colours are, Search Colorama on Google for Detailed info.
• RED
• GREEN
• BLUE
• BLACK
• WHITE
• YELLOW
• CYAN
-
- Example to stop above function continues printing,
while y <= x:
print(Fore.<colour>, <text you want>)
break
'''