Answers for "tkinter how to change font size"

5

How to increase text size tkinter

label = Label(root, text="WELCOME TO ScOMPANY", font=("Courier", 44))
Posted by: Guest on April-02-2021
8

set window size tkinter

# Change window_name to the name of the window object, i.e. root
window_name.geometry("500x500")
# To ensure widgets resize:
widget_name.pack(fill="both", expand=True)
Posted by: Guest on February-27-2020
-1

set label text size tkinter

label.config(font=("Courier", 44))
Posted by: Guest on March-13-2020
5

python tkinter define window size

window = Tk()
#set window size
window.geometry("widthxheight")
Posted by: Guest on June-28-2020

Code answers related to "tkinter how to change font size"

Python Answers by Framework

Browse Popular Code Answers by Language