The given code is
"""Hello World application for Tkinter"""
from tkinter import *
from tkinter.ttk
import *
root = Tk()
label = Label(root, text="Hello World")
label.pack()
root.mainloop()
It should be like this on the second line because otherwise it is giving me error
"""Hello World application for Tkinter"""
from tkinter import *
from tkinter.ttk import *
root = Tk()
label = Label(root, text="Hello World")
label.pack()
root.mainloop()
On the second line the import of 3rd line should be on the above line
If you can assign me the issue then I can create a pull requeest to solve the issue
The given code is
It should be like this on the second line because otherwise it is giving me error
On the second line the import of 3rd line should be on the above line
If you can assign me the issue then I can create a pull requeest to solve the issue