Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
kwargs question
#1
Hi, I am really new to python and wishing I had gotten into it a lot earlier than I did. I have advanced considerably with my learning and have been using tkinter as a UI for its ease of use. Currently I am reading up on classes and using what I have learnt to build a custom widget. I am struggling to understand and how to implement **kwargs. Below is code I have found on a web site, it says I can pass in as many options as I want but did not give an example, can someone give me an example of how I would pass in perhaps some text for a canvas and/or a color for a canvas backgroud.

class ClassName(Tk.Frame):
	def __init__( self, parent, **options ):
		Tk.Frame.__init__( self, parent, **options ) 
T.I.A.

Jeff
Reply


Messages In This Thread
kwargs question - by Jeff_t - Feb-15-2022, 07:25 PM
RE: kwargs question - by menator01 - Feb-15-2022, 07:45 PM
RE: kwargs question - by Jeff_t - Feb-15-2022, 08:38 PM
RE: kwargs question - by deanhystad - Feb-15-2022, 08:48 PM
RE: kwargs question - by Jeff_t - Feb-15-2022, 09:04 PM
RE: kwargs question - by deanhystad - Feb-15-2022, 09:10 PM
RE: kwargs question - by stevendaprano - Feb-16-2022, 10:59 AM
RE: kwargs question - by snippsat - Feb-16-2022, 03:31 PM
RE: kwargs question - by Jeff_t - Feb-16-2022, 04:33 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I instantiate a class with **kwargs? palladium 6 7,598 Feb-16-2023, 06:10 PM
Last Post: deanhystad
  Misunderstanding kwargs? Donovan 2 2,301 Aug-04-2020, 08:09 PM
Last Post: Donovan
  **kwargs question DPaul 10 4,467 Apr-01-2020, 07:52 AM
Last Post: buran
  Unpacking dictionary from .xlsx as Kwargs etjkai 5 2,914 Dec-27-2019, 05:31 PM
Last Post: etjkai
  opts vs kwargs Skaperen 4 2,511 Nov-30-2019, 04:57 AM
Last Post: Skaperen
  create dictionary from **kwargs that include tuple bluefrog 2 4,910 Oct-26-2016, 10:24 PM
Last Post: Larz60+
  How do you use *args and **kwargs? Gengar 3 19,867 Sep-20-2016, 04:22 PM
Last Post: Ofnuts

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020