Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #KARTHIKEYAN_VELLINGIRI
- #ADHIYAMAAN COLLEGE OF ENGINEERING
- airline=input("enter the name of airline (airindia or emirates) : ")
- if(airline=="airindia"):
- weight_level=int(input("enther weight level: "))
- if(weight_level<=30):
- print("checking clear,happy to fly")
- else:
- print("please take a low weight to fly < 30")
- elif(airline=="emirates"):
- weight_level=int(input("enther weight level: "))
- if(weight_level<=35):
- print("checking is clear. now, you can go and catch you flight")
- else:
- print("please, take a low weight to fly < 35")
- else:
- print("please enter the correct airline")
Add Comment
Please, Sign In to add comment