Hello everyone!
I am tring to use Tkinter from terminal (I'm on a mac) and I keep raising AttributeErrors on both Python 2.7 and Python 3. For 2.7 I input:
from Tkinter import *
win = Tk()
f = Frame(win)
b1 = Button(f, "One")
and I raise the AttributeError: 'str' object has no attribute 'keys'
And for Python3 I try:
from tkinter import *
win = Tk()
f = Frame(win)
b1 = Button(f, "One")
and I raise the AttributeError: 'str' object has no attribute 'items'.
Any thoughts on it? I've searched around but found nothing so far, still searching however as I type this. ^.^