I'm trying to put someting like tk.CTkEntry(master=self, placeholder_text="Amount")
in a list (or anything alse). I think I tried every "list like" option.
Any Ideas how to do that ?
It schould be someting like:
button[1] = tk.CTkEntry(master=self, placeholder_text="Amount")
button[1] = tk.CTkEntry(master=self, placeholder_text="Amount")
should work, assumingbutton
is a list. Please try to include a minimal reproducible example in the body of your question.button.append(tk.CTkEntry(...))
to add the button to the list.