filmov
tv
#49 Python Tutorial for Beginners | Class and Object

Показать описание
Check out our courses:
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO20 (20% Discount)
Udemy Courses:
For More Queries WhatsApp or Call on : +919008963671
In this lecture we will learn:
- Class and object in Python
- How are a class and an object created?
- Syntax for creating a class
- Syntax for creating an object
- How to call a method through an object?
- What is the type of an object?
#1
- Class is a blueprint to create objects.
- Integer, Float, String, etc., are in-built types in Python.
- To create our type like a computer, we have to create our own class for it.
- To use the type that you have created, you need to define a class for it.
- A class can be defined by using the class keyword and every class must have a name to it.
The syntax for creating a class:-
class class_name:
methods():
statements
variables
- A class consists of two things:
1. Attributes - Variables
2. Behaviour - Methods (Functions)
#2
- An object of a class can be defined by a variable and assigned its value with the type of the class.
- A class can have multiple objects.
Syntax of creating an object:-
object variable = class_name()
#3
- type() return the type of a value that is present inside the variable.
- If we will return the type of an object, then it will print the class name. It means an object belongs to a type of particular class.
- String, integer, etc are also object that belongs to some in-build class like str and int respectively.
#4
- We can call any method from a class.
- The behaviour of every object will be different from each other so need to define for which object, you are calling a method.
- So, we need to pass an object in it as a parameter at the time of calling a method.
The syntax for calling a method:-
- We pass an object to a method as an argument that will go into the self.
- Self is the object that you are passing in a method.
- We can also call a method in another way:
Python Tutorial to learn Python programming with examples
Editing Monitors :
Subscribe to our other channel:
Telusko Hindi :
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO20 (20% Discount)
Udemy Courses:
For More Queries WhatsApp or Call on : +919008963671
In this lecture we will learn:
- Class and object in Python
- How are a class and an object created?
- Syntax for creating a class
- Syntax for creating an object
- How to call a method through an object?
- What is the type of an object?
#1
- Class is a blueprint to create objects.
- Integer, Float, String, etc., are in-built types in Python.
- To create our type like a computer, we have to create our own class for it.
- To use the type that you have created, you need to define a class for it.
- A class can be defined by using the class keyword and every class must have a name to it.
The syntax for creating a class:-
class class_name:
methods():
statements
variables
- A class consists of two things:
1. Attributes - Variables
2. Behaviour - Methods (Functions)
#2
- An object of a class can be defined by a variable and assigned its value with the type of the class.
- A class can have multiple objects.
Syntax of creating an object:-
object variable = class_name()
#3
- type() return the type of a value that is present inside the variable.
- If we will return the type of an object, then it will print the class name. It means an object belongs to a type of particular class.
- String, integer, etc are also object that belongs to some in-build class like str and int respectively.
#4
- We can call any method from a class.
- The behaviour of every object will be different from each other so need to define for which object, you are calling a method.
- So, we need to pass an object in it as a parameter at the time of calling a method.
The syntax for calling a method:-
- We pass an object to a method as an argument that will go into the self.
- Self is the object that you are passing in a method.
- We can also call a method in another way:
Python Tutorial to learn Python programming with examples
Editing Monitors :
Subscribe to our other channel:
Telusko Hindi :
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
Комментарии