-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-1.py
More file actions
39 lines (23 loc) · 803 Bytes
/
test-1.py
File metadata and controls
39 lines (23 loc) · 803 Bytes
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
# This a Beta type of saying hi and bye. Treat with care!!
# What does this do?
# - Takes Age and adds it
# - Says glad your day is__
# - says that its good to meet you __
#Simple Time Import
import time
# First Message
print('Hello world! How is it going')
myDay = input() #Response
print('Glad you are doing, ' + myDay) #Glad you are doing __
# Another 5 Seccond wait
time.sleep(3)
# Seccond Message
print('What is your name?') # ask for their name
myName = input() #Response
print('It is good to meet you, ' + myName)
# Fourth Message
print('What is your age?') # ask for their age
myAge = input() #Response
print('You will be ' + str(int(myAge) + 1) + ' in a year.')
print('I will be 2 years old in 2 years.')
# Made by Noah | Tutorial online