Python tkinter button farbe und grösse?
button = Button(root, text="Senden", command=msg)
das hier ist die line für meinen button. sie funktioniert einwandfrei!
Sobald ich allerdings padx oder pady oder bg oder fg hinzufüge:
button = Button(root, text="Starten!", command=msg, padx=50)
button = Button(root, text="Starten!", command=msg, fg="blue")
stürtzt das programm ab und die konsole meiint das Button keine funktion namens fg oder padx hat obwohl ich es exakt so in tutorials gesehn habe. frustrierend ._.
Vielleicht ist es ja offensichtlich. Freue mich über jede antwort.