I was trying myself with Tkinter, and I barely started and got this error and I don't know how to fix it.
AttributeError: partially initialized module 'tkinter' has no attribute 'Tk' (most likely due to a circular import)
This is my source code:
import tkinter
window = tkinter.Tk()
window.mainloop
window.geometry("200x200")