Introduction to Python - Classes and Objects part 1

Опубликовано: 01 Апрель 2026
на канале: Heaplevel
10
1

We start to look at classes and object. Assignment for this video is to think about any object, that can be described as a noun and write a simple class for it.

We write the Person class

class Person(object):
def __init__(self):
self.name = 'Peter'


How is this useful? Well we will understand that in the upcoming videos, don't forget to SUBSCRIBE!

Leave any question in the comments!

Which class did you create?