Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #The Library Director Game
- #The Library Director Game is a one-person educational game that puts the player in the role of Director of a simulated public library.
- #The game is created by Daniel Roland
- print('Welcome to the Library Director Game!')
- print('What is your name?')
- playerName = input()
- print('Hello, ' + playerName)
- print('Please select your choice of setting for the public library that you will manage:')
- print('For a rural community library, enter 1')#Bettsville OH
- print('For an urban community library, enter 2')#East Cleveland OH
- print('For a suburban community library, enter 3')#Cuyahoga Falls OH
- print('For a county seat community library, enter 4')#Ashland OH
- libraryType = input()
- if libraryType == "1":
- print('Congratulations! You have just been selected to be the Director of the Bettsville, Ohio Public Library.')
- if libraryType == "2":
- print('Congratulations! You have just been selected to be the Director of the East Cleveland, Ohio Public Library.')
- if libraryType == "3":
- print('Congratulations! You have just been selected to be the Director of the Cuyahoga Falls, Ohio Public Library.')
- if libraryType == "4":
- print('Congratulations! You have just been selected to be the Director of the Ashland, Ohio Public Library.')
- if libraryType == "1":
- serviceAreaPopulation = 1,218
- populationCaucasian = 0
- populationAfricanAmerican = 0
- populationAsian = 0
- populationHispanic = 0
- registeredBorrowersAdults = 2,245
- registeredBorrowersChildren = 1,476
- registeredBorrowersTotal = 3,721
- annualTotalRevenue = 129,784
- #For future updates, breakout revenue by taxes, fines, gifts, etc.
- staffSize = 1
- budgetSalariesTotal = 55,887
- budgetSuppliesServices = 8,097
- budgetContractedMaterials = 14,653
- budgetPrintMaterials = 21,156
- budgetElectronicMaterials = 0
- budgetPeriodicals = 3,173
- budgetAVMaterials = 4,668
- expenseOperatingCosts = 28,556
- expenseTechnology = 2,104
- collectionPrintSize = 23,455
- collectionSubscriptionSize = 77
- collectionVideosSize = 4,893
- collectionAudiosSize = 3,104
- collectionEbooksSize = 0
- weeklyHours = 44
- annualTotalCirc = 26,488
- annualPhysicalCirc = 26,488
- annualElectronicCirc = 0
- annualAdultCirc = 19,064
- annualJuvenileCirc = 7,424
- weeklyDoorCount = 269
- referenceTransactionsWeekly = 8
- programsChildrenAnnual = 40
- programsYAAnnual = 0
- programsAdultAnnual = 0
- programsTotalAnnualAttendance = 1,050
- summerReadingProgramChildren = 80
- summerReadingProgramTeens = 5
- summerReadingProgramAdults = 0
- publicAccessTerminals = 10
- publicAccessTerminalsAnnualUseCount = 4,056
- publicSupportGrade = 0
Advertisement
Add Comment
Please, Sign In to add comment