-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtesla.py
31 lines (23 loc) · 1.06 KB
/
tesla.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
'''
age = input("What is your age?: ")
if int(age) < 18:
print("Sorry, you are too young to drive this car. Powering off")
elif int(age) > 18:
print("Powering On. Enjoy the ride!")
elif int(age) == 18:
print("Congratulations on your first year of driving. Enjoy the ride!")
'''
#1. Wrap the above code in a function called checkDriverAge(). Whenever you call this function, you will get prompted for age.
# Notice the benefit in having checkDriverAge() instead of copying and pasting the function everytime?
#2 Instead of using the input(). Now, make the checkDriverAge() function accept an argument of age, so that if you enter:
#checkDriverAge(92);
#it returns "Powering On. Enjoy the ride!"
#also make it so that the default age is set to 0 if no argument is given.
def checkDriverAge(age = 0):
if age < 18:
return 'Sorry, you are too young to drive this car. Powering off'
elif age > 18:
return "Powering On. Enjoy the ride!"
elif age == 18:
return "Congratulations on your first year of driving. Enjoy the ride!"
print(checkDriverAge())