Answers for "how to call a python class"

3

class python

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

p1 = Person("John", 36)

p1.age = 40

print(p1.age)
---------------------------------------------------------------
40
Posted by: Guest on October-29-2020
-1

how to create class in python

x.counter = 1
while x.counter < 10:
    x.counter = x.counter * 2
print(x.counter)
del x.counter
Posted by: Guest on June-18-2021

Code answers related to "how to call a python class"

Python Answers by Framework

Browse Popular Code Answers by Language