Solution Review: Write a Square Function
This review provides a detailed explanation of the solution to the "Write a Square Function" challenge.
We'll cover the following...
Solution
Let’s understand the solution of the challenge in Powershell and Python.
Python
Press + to interact
def square(num):return num*numresult = square(5)print(result)
...