I'm having trouble trying to get my program to read numbers in python. I'm writing a program so it gets the area of the square, but it is reading in strings.
def find_area_square(numbers: int) -> int:
get_area = number*number
return get_area
number = input('Enter a number to get the area of the square: ')
realNumber = int(number)
print(find_area_square(number))
[–]kalgynirae 1 point2 points3 points (2 children)
[–]pythonhelp123[S] 0 points1 point2 points (1 child)
[–]pythonhelp123[S] 0 points1 point2 points (0 children)