Practicum

In the Hall of Mastery, combine your knowledge from previous lessons to complete a series of intricate tasks, demonstrating your comprehensive understanding of magic.

˙⋆˖⁺‧₊☽◯☾₊‧⁺˖⋆˙

Practical Application

⋆˖⁺‧₊ Create variables name, age, and base_power.
Calculate the mage's final_power by multiplying base_power by 1.2 if age is greater than 18, otherwise by 1.1. ₊‧⁺˖⋆

⋆˖⁺‧₊ Use an if-elif-else statement to determine the mage's rank:
"Novice" if final_power is less than 100
"Adept" if between 100 and 200
"Master" if greater than 200.
Display the mage's name, age, final_power, and rank using the print() spell. ₊‧⁺˖⋆

Sample Output:
Name: Ariana
Age: 22
Final Power: 180.0
Rank: Adept

Demonstrate your mastery by combining skills to evaluate a mage.

#Type your code below: