I wanna create differently Label name in Tkinter. For example..
import tkinter
root = tkinter.tk()
for i in range(1,10)
"{}{}".format("Name", i) = tkinter.Label(root, text = i)
"{}{}".format("Name", i).pack
I know "format" is not right instructions. But I already search many page to find solution...