. Complete the function definition so it returns the square of the product of the parameters, so sqrProd(2, 5) returns (2*5) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

. Complete the function definition so it returns the square of the product of the parameters, so sqrProd(2, 5) returns (2*5)

Hey can someone help me with this question. Iam new to python so I am bit lagging behind. Pls 🙏

14th Jul 2020, 2:06 PM
Mehul sathish
Mehul sathish - avatar
1 Answer
0
def sqr(x,y): return x*y print(sqr(x=int(input())),y=int(input()))
14th Jul 2020, 2:11 PM
Sâñtôsh
Sâñtôsh - avatar