Answers for "how to get button press in tk inter"

0

how to get button press in tk inter

bn = Button(app, text="#Text you want to show in button bn",
            command=lambda m="#Text you want to show when \
            bn is clicked": which_button(m))
            
bn.grid(padx=10, pady=10)
Posted by: Guest on August-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language