Write a function to find the area of sqaure
Topic: Write a function to find the area of sqaure
Solution
def square_area(a): return a*a
List all Python Programs