Function Call

To join our Academy, you have to know what a function is and how to call it.

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

Functionsyntax:  function_name( ) is a callable subprogram in the main program.

To call a function, first you write its name, then parenthesis «( )» with parameters inside (if exist).

#Function call example: print()

Parametersyntax:  function_name(parameter) is an intrinsic property of the function on which its purpose depends.

#Function with a parameter print("Hello, Harry!")

There are many built-in functions in Python.

print( ) – this function output data from parameters to console.

Practical Application

You have to indicate the faculty you want to join:
"Celestial Magic", "Ignis Mastery" or "Eldritch Knowledge".

⋆˖⁺‧₊ Output your faculty's name to console. ₊‧⁺˖⋆

Sample Output:
Celestial Magic
#Type your code below: