Tkinter Options Menu not displaying selection receiving below error
AttributeError: 'NoneType' object has no attribute 'set'
Used this code to add dynamic list to the option menu. Option menu changing dynamically when new list is generated but when select the item from the list the above error is coming
dropdownmenu=StringVar()
om=dropdownmenu.set("Select any section")
lst=final_key_list
drop_menu=drop.children['menu']
for val in lst:
drop_menu.add_command(label=val,command=lambda v=om,l=val:v.set(1))