Answer:
Explanation:
Since no further information was provided I created the PayLevel function as requested. It takes the Ssn as input and checks it with a premade dictionary of Ssn numbers with their according salaries. Then it checks that salary against the average of all the salaries and prints out whether it is Above, Below, or Average. The output can be seen in the attached picture below.
employeeDict = {162564298: 40000, 131485785: 120000, 161524444: 65000, 333221845: 48000}
average = 68250
def PayLevel(Ssn):
pay = employeeDict[Ssn]
print("Employee " + str(Ssn) + " is:", end=" "),
if pay > average:
print("Above Average")
elif pay < average:
print("Below Average")
else:
print("Average")
PayLevel(161524444)
PayLevel(131485785)
Answer:
Bruv
Explanation:
never gonna give u up nice
Hi, this is a little response I wrote for you.
<u>What is Brainliest?</u>
<em>Brainliest</em> is something that the person posting a question can give to the poster of the "best" response to their question.
<u>Benefits:</u>
a. To level up, you need a certain amount of Brainliests.
b. I believe they are worth 25 points for the person getting the Brainliest.
<u>How do you give Brainliest?</u>
You can only give Brainliest after <u>both people</u> have answered your question. So, after I answer, you should see a little crown icon by the bottom of my response. If you click it, you will give me "Brainliest" for that question and I will be one Brainliest closer to becoming an "Expert" instead of an "Ace."
I hope this helps clear things up! :)