Implement a function called create_square that takes three arguments—the x-coordinate and the y-coordinate of the upper-left corner and the length of a side. calling the predefined tkinter function create_rectangle.
import tkinter
def create_square (x: int, y: int, s: int):
'''Return a square on tkinter given the x-coordinate and
y-coordinate of the upper-left corner and length of a side'''
return(create_rectangle(x, y, s))
It comes out as an error, but I don't know how else to do this.