-3

I've looking up stuff and I couldn't find anything. I originally tried this code:

import sys
from tkinter import *
App = Tk()
App.geometry("600x400")
App.mainloop()

But I get an error saying there is no module called tkinter.

anonymous
  • 27
  • 1
  • 5

1 Answers1

-1

If you already installed tkinter, try below code.

Update:

In Python2:

from Tkinter import some_module  

In Python3:

from tkinter import some_module
Ravi Kumar
  • 1,688
  • 2
  • 19
  • 30