Computer Science, asked by niranjanna24, 6 hours ago

write a phython function that takes a number as an argument and print it's square

Answers

Answered by Puneetop
0

Explanation:

condition : Use * just one time and "square" function twice.

Answered by as7803617
1

Answer:

How to Square a Number in

By multiplying numbers two times: (number*number)

By using Exponent Operator (number2)

Using math.() method: (math(number, 2))

Similar questions