-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13.py
More file actions
28 lines (28 loc) · 661 Bytes
/
Copy path13.py
File metadata and controls
28 lines (28 loc) · 661 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
# var1 = 6
# var2 = 56
# var3 = int(input("Enter your number"))
# if var3>var2:
# print("Greater")
# elif var3 == var2:
# print("Equal")
# else:
# print("Lesser")
# list = [5, 7, 3]
# print(15 not in list)
# if 5 in list:
# print("Yes")
# else:
# print("No")
age = int(input("Enter you age:\n"))
# if age in range(7,100):
# pass
# else:
# print("Write your proper age")
if age>100:
print("You can't drive a vechicle")
elif age<18:
print("You can't drive a vechicle")
elif age == 18:
print("we can't take action ,pls go to driving center physically ")
else:
print("You can drive a vechicle")