Answers for "how to resize text with the window in tkinter"

2

how to resize tkinter window

import tkinter

window = tkinter.Tk()       # creating the window object
window.title('my first GUI program')
window.minsize(width=600, height=500)    # makes the window 500*600

window.mainloop()           # keeping the window until we close it
Posted by: Guest on February-01-2021
-1

how to resize text label in tkinter

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

Code answers related to "how to resize text with the window in tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language