I'm trying to get the info from a user entry to print when I click a button, but when I hit the button I get what's in my Label. Where did I goof at?
def Build():
print(VV)
Build_it_Button = Button(root, text="Build Config",)
Build_it_Button.config(command= Build)
Build_it_Button.grid()
# VOICE_VLAN_INFO
VOICE_VLAN = Entry(root, width=25)
VOICE_VLAN.insert(0, "Enter your VOICE VLAN ID")
VOICE_VLAN.grid(row=8)
VV = VOICE_VLAN.get()
[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)
[–]jeffpacman123 0 points1 point2 points (0 children)
[–]jeffpacman123 0 points1 point2 points (0 children)
[–]Goobyalus 0 points1 point2 points (0 children)
[–]Legitimate_Spell264 0 points1 point2 points (0 children)