- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello.py
More file actions
Latest commit
23 lines (13 loc) · 457 Bytes
/
Copy pathHello.py
File metadata and controls
23 lines (13 loc) · 457 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Says hello
# Imported Modules #
importtime
# 10 Seccond Timer
time.sleep(10)
print ("Hello World I am Daddy")
# Another 5 Seccond wait
time.sleep(5)
print ("Your coding is very Basic Right Now.")
#Note: If you are having multiple print lines or having other lines you need to have print (" Insert Text")
# Another 15 Seccond wait
time.sleep(15)
print ("I can now confirm that you can wait an extended ammount of time.")