Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
class arguements
#6
lines 3-9 is the __init__() functions. That is one of the number of special methods, so called dunders (from double underscore) functions that can be used to customize class.
__init__() is called at time of class instantiation (i.e. every time when you create an instance of the class).
on lines 4-9 they initialize some class attributes. Note that although normally you would inirialize some if not all attributes in __init__(), it's not mandatory that all attributes are initializaed in __init__(). actually it's not mandatory to have __init__()
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
class arguements - by astral_travel - Apr-29-2020, 10:03 AM
RE: class arguements - by pyzyx3qwerty - Apr-29-2020, 10:19 AM
RE: class arguements - by buran - Apr-29-2020, 10:36 AM
RE: class arguements - by astral_travel - Apr-29-2020, 03:44 PM
RE: class arguements - by deanhystad - Apr-29-2020, 04:04 PM
RE: class arguements - by buran - Apr-29-2020, 04:14 PM
RE: class arguements - by astral_travel - Apr-29-2020, 04:16 PM
RE: class arguements - by buran - Apr-29-2020, 04:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Accessing varying command line arguements Rakshan 3 2,135 Jul-28-2021, 03:18 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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