-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreetingapp.py
More file actions
26 lines (25 loc) · 967 Bytes
/
Copy pathgreetingapp.py
File metadata and controls
26 lines (25 loc) · 967 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
print("\t\t================================")
print()
print("\t\tHi! WELCOME TO CHIJULYBUILD GREETING APP")
print()
print("\t\t================================")
print()
my_name = "Chinedu" # my surnname
my_name += " Prince" # my firstname
my_age = "21" # my age
favorite_color = "Blue" # my favorite color
print("\tHi!", my_name,". Your favorite color is", favorite_color,", and you are", my_age, "years old.")
print()
my_age_in_5_years = "my_age + 5" # my age in 5 years
print()
print("\tIt looks like in 2030 you will be", my_age_in_5_years, "years old.")
trip_travel = "London" # place from my bucket list to visit
print()
print("\tOops! From your bucket list, you will be visiting", trip_travel, "in 2030.", end=" ")
print("Have a nice trip", my_name + "!")
print()
print("\t\t================================")
print()
print("\t\tTHANK YOU FOR USING CHIJULYBUILD GREETING APP")
print()
print("\t\t================================")