Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. # This is a program that manages books for teachers
  2. # your name
  3. # version / date of last change
  4.  
  5. def main():
  6.     while True:
  7.         choice = input('''
  8.        ****************************************
  9.           Welcome to our rating system!
  10.        ****************************************
  11.        
  12.        1. Rate a class
  13.        2. Quit
  14.        
  15.        Please enter your choice here > ''')
  16.        
  17.         if choice ==1:
  18.             print('do the rating thing here')
  19.         if choice == 2:
  20.             break                
  21. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement