python:实现正方形面积
n = input("Enter the side of the square: ") # Side length should be given in input
side = float(n)
area = side * side # calculate area
print(&
n = input("Enter the side of the square: ") # Side length should be given in input
side = float(n)
area = side * side # calculate area
print(&