fork download
  1. def main():
  2. # Initialize file (hidden in Unit Test #1)
  3. # Display header and menu
  4. print("********************************")
  5. print("AutoCountry Vehicle Finder v0.4")
  6. print("********************************")
  7. print("\nPlease Enter the following number below from the following menu:")
  8. print("1. PRINT all Authorized Vehicles")
  9. print("2. SEARCH for Authorized Vehicle")
  10. print("3. ADD Authorized Vehicle")
  11. print("4. DELETE Authorized Vehicle")
  12. print("5. Exit")
  13. print("********************************")
  14.  
  15. if __name__ == "__main__":
  16. main()# your code goes here
Success #stdin #stdout 0.12s 14088KB
stdin
Standard input is empty
stdout
********************************
AutoCountry Vehicle Finder v0.4
********************************

Please Enter the following number below from the following menu:
1. PRINT all Authorized Vehicles
2. SEARCH for Authorized Vehicle
3. ADD Authorized Vehicle
4. DELETE Authorized Vehicle
5. Exit
********************************