Difference between revisions of "Tkinter"
Starfrost7 (talk | contribs) (Created page with "=Tkinter= Tkinter is a module in Python that stands for <b>Tk</b>-<b>inter</b>action. This somewhat exotic acronym is derived from the fact that Tkinter's main purpose...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
=Tkinter= | =Tkinter= | ||
Tkinter is a module in [[Python]] that stands for <b>[[Tk]]</b>-<b>inter</b>action. This somewhat exotic acronym is derived from the fact that Tkinter's main purpose in Python is to interact with a GUI system dubbed <i>Tk.</i> Because you could alternately just use Tk, | Tkinter is a module in [[Python]] that stands for <b>[[Tk]]</b>-<b>inter</b>action. This somewhat exotic acronym is derived from the fact that Tkinter's main purpose in Python is to interact with a GUI system dubbed <i>Tk.</i> Because you could alternately just use Tk, | ||
+ | |||
+ | =Downloading Tkinter= | ||
+ | Tkinter is already downloaded when you install Python. To test Tkinter, do <br> <br> | ||
+ | <code> | ||
+ | import tkinter <br> | ||
+ | tkinter._test() | ||
+ | </code> | ||
+ | |||
+ | =Learn More about Tkinter= | ||
+ | If you want to learn more about tkinter, you can take AoPS's online course Intermediate Programming with Python at https://artofproblemsolving.com/school/course/python2. |
Latest revision as of 13:29, 13 May 2020
Tkinter
Tkinter is a module in Python that stands for Tk-interaction. This somewhat exotic acronym is derived from the fact that Tkinter's main purpose in Python is to interact with a GUI system dubbed Tk. Because you could alternately just use Tk,
Downloading Tkinter
Tkinter is already downloaded when you install Python. To test Tkinter, do
import tkinter
tkinter._test()
Learn More about Tkinter
If you want to learn more about tkinter, you can take AoPS's online course Intermediate Programming with Python at https://artofproblemsolving.com/school/course/python2.