Tkinter Flashcards

1
Q

➤ provides numerous widgets to build a GUI in Python. Each widget has its specific use, such as displaying text, capturing user input, or displaying choices in dropdowns and buttons.

➤ is Python’s standard library for creating graphical user interfaces (GUIs). It is widely used due to its simplicity, versatility, and cross-platform compatibility.

A

Tkinter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

provides tools for adding windows, buttons, text fields, and other UI components.

A

Tkinter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

➤ Tkinter provides a variety of widgets for GUIs, including labels, buttons, and entry fields.

A

Tkinter Widgets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Display static text in a windows

A

Label widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A clickable button that triggers a command

A

Button widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Used to capture a single line of text input from the user.

A

Entry widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Displays an on/off switch that the user can toggle.

A

Checkbutton widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Allows user to select one option from multiple choices.

A

Radio Button Widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Displays a list of items from which the user can select.

A

Listbox widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Adds vertical or horizontal scrolling capabilities to other widgets.

A

Scroll Bar widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Creates a menu bar at the top of the window.

A

Menu Widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Dropdown menu to select one of many options.

A

ComboBox widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Allows user to select a
numeric value in a given range.

A

Scale widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Creates a new top-level window.

A

Top Level Widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Displays multi-line text, like a label but allows wrapping.

A

message widget

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Dis la s a button that shows a menu when clicked.

A

Menubutton widget

17
Q

Displays a visual representation of progress in a task.

A

Progressbar widget

18
Q

Allows user to select from a range of values.

A

Spinbox widget

19
Q

Used for entering and displaying multiple lines of text.

A

Text widget

20
Q

Enables drawing shapes, images, and complex layouts.

A

Canvas wiget

21
Q

Manages resizing of its child widgets in horizontal or vertical
direction.

A

Pinned window widget

22
Q

Tkinter offers three main geometry managers for widget layout:

A

pack, grid, and place.

23
Q

Stacks widgets vertically or horizontally.

24
Q

Organizes widgets in a table-like structure.

25
Q

Positions widgets at specific x, y coordinates.