If Statement Python 2.7.8,Invalid syntax

power gear

The Problem is at if statement invalid syntax at A after if statement.Please Help.

print("Welcome to the Project Hotel ")
print("Enter the following Pins to Enter the Following Areas  :  ")
print("A = Pin for the Visitor Management is 1111")
print("B = Pin for the Room Management is 2222")
print("C = Pin for the Bill Management is 3333")      

A=int(input("Enter the 4-Digit Pin here -  "))

If A==1111:
    print("Welcome to the Visitor Management Section")    

if A==2222:
    pass

if A==3333:
    print("Total Amount =(Total Room amount + Food amounts + Extras)")
      print("VAT here is 4.5% * (Total Amount)")
      print("Final Amount = Total amount + VAT")
Hotel.close()
linuxuser

You're using a capital I in your first if statement.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related