Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Learn Python - Classes

CuriosityDeck
Python in Plain English
2 min readJan 9, 2022

--

class Example:
name = 'Techn0'

Object

ex = Example
print(ex.name)
Techn0

__init__() Method

class Example:
def __init__(self, name, age):
self.name = name
self.age = age
ex = Example("Techn0", 24)print(ex.name)
print(ex.age)
Techn0 
24

Methods in a Classes

class Example:
def __init__(self, name, age):
self.name = name
self.age = age
def func (self, aim):
print("hello I am " + self.name + " I am a " + aim )

ex = Example("Techn0", 24)
print(ex.name)
print(ex.age)
ex.func("Engineer")
Techn0 
24
hello I am Techn0 I am a Engineer

Self Parameter

class Example:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(abc):
print("Hello my name is " + abc.name)
p1 = Example("John", 36)p1.myfunc()
Hello my name is John

Modify the Object Properties

p1.age = 23
print(p1.age)
print(p2.age)
23 
36

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response