drr59

Library Director Game

Feb 4th, 2015
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. #The Library Director Game
  2. #The Library Director Game is a one-person educational game that puts the player in the role of Director of a simulated public library.
  3. #The game is created by Daniel Roland
  4.  
  5. print('Welcome to the Library Director Game!')
  6. print('What is your name?')
  7. playerName = input()
  8. print('Hello, ' + playerName)
  9. print('Please select your choice of setting for the public library that you will manage:')
  10. print('For a rural community library, enter 1')#Bettsville OH
  11. print('For an urban community library, enter 2')#East Cleveland OH
  12. print('For a suburban community library, enter 3')#Cuyahoga Falls OH
  13. print('For a county seat community library, enter 4')#Ashland OH
  14. libraryType = input()
  15. if libraryType == "1":
  16. print('Congratulations! You have just been selected to be the Director of the Bettsville, Ohio Public Library.')
  17. if libraryType == "2":
  18. print('Congratulations! You have just been selected to be the Director of the East Cleveland, Ohio Public Library.')
  19. if libraryType == "3":
  20. print('Congratulations! You have just been selected to be the Director of the Cuyahoga Falls, Ohio Public Library.')
  21. if libraryType == "4":
  22. print('Congratulations! You have just been selected to be the Director of the Ashland, Ohio Public Library.')
  23.  
  24. if libraryType == "1":
  25. serviceAreaPopulation = 1,218
  26. populationCaucasian = 0
  27. populationAfricanAmerican = 0
  28. populationAsian = 0
  29. populationHispanic = 0
  30. registeredBorrowersAdults = 2,245
  31. registeredBorrowersChildren = 1,476
  32. registeredBorrowersTotal = 3,721
  33. annualTotalRevenue = 129,784
  34. #For future updates, breakout revenue by taxes, fines, gifts, etc.
  35. staffSize = 1
  36. budgetSalariesTotal = 55,887
  37. budgetSuppliesServices = 8,097
  38. budgetContractedMaterials = 14,653
  39. budgetPrintMaterials = 21,156
  40. budgetElectronicMaterials = 0
  41. budgetPeriodicals = 3,173
  42. budgetAVMaterials = 4,668
  43. expenseOperatingCosts = 28,556
  44. expenseTechnology = 2,104
  45. collectionPrintSize = 23,455
  46. collectionSubscriptionSize = 77
  47. collectionVideosSize = 4,893
  48. collectionAudiosSize = 3,104
  49. collectionEbooksSize = 0
  50. weeklyHours = 44
  51. annualTotalCirc = 26,488
  52. annualPhysicalCirc = 26,488
  53. annualElectronicCirc = 0
  54. annualAdultCirc = 19,064
  55. annualJuvenileCirc = 7,424
  56. weeklyDoorCount = 269
  57. referenceTransactionsWeekly = 8
  58. programsChildrenAnnual = 40
  59. programsYAAnnual = 0
  60. programsAdultAnnual = 0
  61. programsTotalAnnualAttendance = 1,050
  62. summerReadingProgramChildren = 80
  63. summerReadingProgramTeens = 5
  64. summerReadingProgramAdults = 0
  65. publicAccessTerminals = 10
  66. publicAccessTerminalsAnnualUseCount = 4,056
  67. publicSupportGrade = 0
Advertisement
Add Comment
Please, Sign In to add comment