Boas, posso fazer isto?
tabsname = ["messages", "Change", "Clear Cache", "Get Configuration", "Get Diagnostics",
"Get List","Send List","Reset", "Remote Start","Remote STOP","Unlock","Update"]
tabcontval=["Tab1", "Tab2", "tab3", "tab4", "tab5","tab6","tab7","tab8","tab9","tab9","tab10","tab11","tab12"]
for names, tabb in zip(tabsname, tabcontval):
tabb = ttk.Frame(tabControl)
tabControl.add(tabb, text=names)
tabControl.pack(expand=1, fill="both")
de modo a nao ter tantas linhas de codigo queria defenir as tabs deste modo mas depois quando tento usar
frmbtnspecs = ttk.Frame(Tab1)
frmbtnspecs.pack(side="top")
recebo o erro de tab1 not defined
alguem pode ajudar?
Obrigado