-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plant names4.py
35 lines (19 loc) · 902 Bytes
/
Plant names4.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
import random
import time
name = ['Fred','George','Gorge','Joe','Chase the amazing','jeff','jeffery','niko','rob','Bob','pete the palm','sam','greg','tree','spot the pot','Mr.plant','Pokey','michel','david','corn','rocco','Uhhh...... TRIANGE???!!!! D:','jack','jason','chair','leafy','trupet','{}','hey','bob','ROBROBROBMUH',]
print("Finding plant name....... Finding plant name....")
time.sleep(2)
print("Found plant name:")
time.sleep(1)
plant_name = random.choice(name)
print(plant_name)
print("--------------------------------------------- THATS THE NAME LOLOLOLOLOLOLOLOLOLOLOL LIKE IT YOU MUST NOW NOWN NOW NOW PlANT NAMES")
time.sleep(5)
while True:
print("Finding plant name..... Finding plant name....")
time.sleep(4)
print("Found plant name:")
time.sleep(1)
plant_name = random.choice(name)
print(plant_name)
print("------------------")