The OptionMenu in tkinter takes any number of parameters for the options in the menu such as follows:
import tkinter as tk
newMenu = tk.OptionMenu(self, clicked, "A", "B", command=doSomething)
Is there a way to update the number of argumenets in OptionMenu so I can go from the above code to this new code:
newMenu = tk.OptionMenu(self, clicked, "A", "B", "C", "D", command=doSomething)