Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 26: Parson's Problem: Implement OSHA's Velociraptor Avoidance Protcols OSHA (the Occupational Safety and Health Administration) has recently rolled out some new velociraptor avoidance
Question 26: Parson's Problem: Implement OSHA's Velociraptor Avoidance Protcols OSHA (the Occupational Safety and Health Administration) has recently rolled out some new velociraptor avoidance regulations. Specifically, raptors only about as large as a small dog (under 22 lbs) no longer require seeking shelter. The new policy is to dispose of small raptors using (1) a baseball bat, if available (2) your desk chair, if the company baseball bat is missing. Please write a function, velociraptor_osha_check, which takes the weight of the velociraptor and a boolean bat_avail. Your function should return a string for the correct course of action according to OSHA protocols: "Hide in the bunker" for large velociraptors, "Smack it with the company bat" for small raptors when the bat is available, and Throw your chair at it! should the bat not be available. return "Hide in the bunker". if weight >= 22: else: return "Smack it with the comp if bat_avail != true: if chair_avail == True: else: + if bat_avail: return "Throw your chair at it def velociraptor_osha_check (weight, bat_avai if weight < 22:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Function definition for velociraptoroshacheck def veloc...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started