-
Notifications
You must be signed in to change notification settings - Fork 6
/
E1.py
21 lines (19 loc) · 850 Bytes
/
E1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import random
import os
import time
from colorama import Fore,Back,Style
import requests
import re
advicelist = ["You can Improve my code. Its so simple...","You can play a game...","You may learn new programming language...","You can star my github repo."]
gamelist = ["Fortnite","Valorant","Far Cry 5","GTA V","Tomb Rider","Control","Far Cry 6","Snake Game","Football","Basketball"]
R_EATING = "Ummm... You may eat pasta. But my favorite foods are : CPU and RAM. They are awsome. You must try!"
R_ADVICE = random.choice(advicelist)
R_GAME = random.choice(gamelist)
def unknown():
response = ["Could you please re-phrase that? ",
"...",
"I didnt understand sorry... Please reply.",
"Sounds about right.",
"What does that mean?"][
random.randrange(5)]
return response