Write a function to find the perimeter of a square
Topic: Write a function to find the perimeter of a square
Solution
def square_perimeter(a): return 4*a
List all Python Programs