Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1006135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:24:35+00:00 2026-05-16T08:24:35+00:00

How do I create a class called rectangle that I can pass it the

  • 0

How do I create a class called rectangle that I can pass it the coordinates and a color and have it fill those one?

from Tkinter import *
master = Tk()

w = Canvas(master, width=300, height=300)
w.pack()

class rectangle():

    def make(self, ulx, uly, lrx, lry, color):
        self.create_rectangle(ulx, uly, lrx, lry, fill=color)


rect1 = rectangle()
rect1.make(0,0,100,100,'blue')

mainloop()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T08:24:36+00:00Added an answer on May 16, 2026 at 8:24 am

    Here is one way of doing it. First, to draw the rectangle on the Tk Canvas you need to call the create_rectangle method of the Canvas. I also use the __init__ method to store the attributes of the rectangle so that you only need to pass the Canvas object as a parameter to the rectangle’s draw() method.

    from Tkinter import *
    
    class Rectangle():
        def __init__(self, coords, color):
            self.coords = coords
            self.color = color
    
        def draw(self, canvas):
            """Draw the rectangle on a Tk Canvas."""
            canvas.create_rectangle(*self.coords, fill=self.color)
    
    master = Tk()
    w = Canvas(master, width=300, height=300)
    w.pack()
    
    rect1 = Rectangle((0, 0, 100, 100), 'blue')
    rect1.draw(w)
    
    mainloop()
    

    EDIT

    Answering your question: what is the * in front of self.coords?

    To create a rectangle on a Tk Canvas you call the create_rectangle method as follows.

    Canvas.create_rectangle(x0, y0, x1, y1, option, ...)
    

    So each of the coords (x0, y0, etc) are indiviual paramaters to the method. However, I have stored the coords of the Rectangle class in a single 4-tuple. I can pass this single tuple into the method call and putting a * in front of it will unpack it into four separate coordinate values.

    If I have self.coords = (0, 0, 1, 1), then create_rectangle(*self.coords) will end up as create_rectangle(0, 0, 1, 1), not create_rectangle((0, 0, 1, 1)). Note the inner set of parentheses in the second version.

    The Python documentation discusses this in unpacking argument lists.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create a class whose methods can be called from multiple
I'm trying to create a class called Musician which inherits from my class Person
I would like to create a thread pool. I have a class called ServerThread.cpp,
I have a question... I want to create a class called thumb w/ all
I have a CCLayer class where I create an animated sprite that is the
I have created a custom class called RCTextField , whose purpose is to create
I have to create a class in Visual Basic called StringWork. Public Class StringWork
I'm trying to create a point class which defines a property called coordinate. However,
I create a new Django app (not project) called Bussinesses, then add following class
I have created a class called Class1, and in another module, I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.