TEXT AREA IN PYTHON USING TKINTER |CODEJAL|

Published: 08 May 2024
on channel: codejal
14
0

#text area

from tkinter import *


def submit():
input=text.get("1.0",END)
print(input)

window=Tk()
text=Text(window,height=5,width=50,bg="white",fg="black",font=("Ink Free",12,"bold"),padx=20,pady=20)
text.pack()
button=Button(window,text="Click Me!",command=submit)
button.pack()
window.mainloop()


On this page of the site you can watch the video online TEXT AREA IN PYTHON USING TKINTER |CODEJAL| with a duration of hours minute second in good quality, which was uploaded by the user codejal 08 May 2024, share the link with friends and acquaintances, this video has already been watched 14 times on youtube and it was liked by 0 viewers. Enjoy your viewing!