Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.17 KB | None | 0 0
  1. def temptTest():
  2.     #                    #
  3.     #  Common Core Team  #
  4.     #                    #
  5.     anim    =   {1:'John Miller "jrmiller"', 2:'ext:53995', 3:'Jose Medina "jmedina"', 4:'54576'}
  6.    
  7. ^Z|halt 0   ##Lets grab the show the user is searching for
  8.     showListings = {1:'kfp2', 2:'Show2', 3:'show3'}
  9.     prntOptions = ('(1)....Kung Fu Panda', '(2)....show2', '(3)....Show3\n')
  10.     for show in prntOptions:
  11.         print show
  12.    
  13.     showStore = raw_input('Which show are you looking into?:  ')
  14.     current = showListings[int(showStore)]
  15.     showCurrentDept = ('\n(1)....'+current+'_anim', '(2)....'+current+'_cfx', '(3)....'+current+'_crowd', '(4)....'+current+'_flo',
  16.             '(5)....'+current+'_rlo', '(6)....'+current+'_layout', '(7)....'+current+'_fx', '(8)....'+current+'_mpaint', '(9)....'+current+'_surf', '(0)..Exit\n')
  17.     for n in showCurrentDept:
  18.         print n
  19.        
  20.     infoChoose = raw_input("Now please ender the dept you wish to find directory information:  ")
  21.     if int(infoChoose) == 0:
  22.         return
  23.     else:
  24.         for n in anim.keys():
  25.             prnt = anim[n]
  26.             print prnt
  27.        
  28.    
  29.    
  30.    
  31.     ##Once the show is stored, lets give the user a list of options to pick from
  32.     ##for each dept they want info for
  33.    
  34.    
  35.    
  36. temptTest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement