Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
class arguements
#1
I've noticed - sometimes there is code like this:

class Person:
  def __init__(self, name, age):
    self.name = name
    self.age = age

p1 = Person("John", 36)

print(p1.name)
print(p1.age) 
where class definition is left empty (class Person),

and sometimes code like this:

 	
class Employee(object):
where the class is given an arguement,

what is the difference, when each of the variation is being used ?
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,082 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