Python tkinter widgets Exercise: Add a canvas in your application using tkinter module
Python tkinter widgets: Exercise-2 with Solution
Write a Python GUI program to add a canvas in your application using tkinter module.
Sample Solution:
Python Code:
import tkinter as tk
parent = tk.Tk()
canvas_width = 100
canvas_height = 80
w = tk.Canvas(parent,
width=canvas_width,
height=canvas_height)
w.pack()
y = int(canvas_height / 2)
w.create_line(0, y, canvas_width, y, fill="#476042")
parent.mainloop()
Explanation:
In the exercise above -
- import tkinter as tk - Import the required libraries.
- parent = tk.Tk() - Create the main Tkinter window.
- canvas_width = 100 canvas_height = 80 - Define canvas dimensions.
- w = tk.Canvas(parent, width=canvas_width, height=canvas_height) - Create a Canvas widget within the main window.
- y = int(canvas_height / 2) - Calculate the y-coordinate for the horizontal line.
- w.create_line(0, y, canvas_width, y, fill="#476042") - Create a horizontal line on the canvas.
- parent.mainloop() - Start the Tkinter main loop.
Sample Output:
Flowchart:
Python Code Editor:
Previous: Write a Python GUI program to add a button in your application using tkinter module.
Next: Write a Python GUI program to create two buttons exit and hello using tkinter module.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/tkinter/python-tkinter-widgets-exercise-2.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics