Question: You are writing a game and need a function to calculate what a character's experience points will be after a battle. Before the battle, the
You are writing a game and need a function to calculate what a character's "experience points" will be after a battle. Before the battle, the character has 95934 "experience points" (This would be stored in variable in the full program) and the function you write will take parameters for the points the character would earn if they win the battle as well as a boolean letting you know if the character was victorious in battle. using python Write a function named "compute_xp" that takes two parameters which are an integer and boolean in that order. The function will return the 95934 if the boolean is false (lost the battle) or 95934 plus the integer parameter if the boolean is true (won the battle)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
