Jd's Exceptions

AttributeError: 'NoneType' object has no attribute '_root'

1. Exception

AttributeError: 'NoneType' object has no attribute '_root'

2. Solution

StringVar needs a master

>>> StringVar(Tk())

or

>>> root = Tk()
>>> StringVar()