#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ ENGG1811 Lecture Week 02 A function with multiple inputs """ # The function mySqr squares the input and # returns it as the output def my_power(x,n): return x ** n print('The value of my_power(5,2) is',my_power(5,2)) print('The value of my_power(2,5) is',my_power(2,5))