Karcky

assignment_2

May 25th, 2021 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.65 KB | None | 0 0
  1. #KARTHIKEYAN_VELLINGIRI
  2. #ADHIYAMAAN COLLEGE OF ENGINEERING
  3. airline=input("enter the name of airline (airindia or emirates) : ")
  4.  
  5. if(airline=="airindia"):
  6.     weight_level=int(input("enther weight level: "))
  7.     if(weight_level<=30):
  8.        print("checking clear,happy to fly")
  9.     else:
  10.        print("please take a low weight to fly < 30")
  11. elif(airline=="emirates"):
  12.      weight_level=int(input("enther weight level: "))
  13.      if(weight_level<=35):
  14.        print("checking is clear. now, you can go and catch you flight")
  15.      else:
  16.        print("please, take a low weight to fly < 35")        
  17. else:
  18.     print("please enter the correct airline")
Add Comment
Please, Sign In to add comment