Finance[US] Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
590 views
in Python Programming by Goeduhub's Expert (9.3k points)

1 Answer

0 like 0 dislike
by Goeduhub's Expert (9.3k points)
 
Best answer

Python is an object oriented programming language.

  • Almost everything in Python is an object, with its properties and methods.
  • A Class is like an object constructor, or a blueprint for creating objects.

Class

Class is a set or category of things having some property or attribute in common and differentiated from others by kind, type, or quality.

To create a class, use the keyword class

Example-create a class named Firstclass , with a property named x:


class FirstClass:

    x=5

print(FirstClass)


<class '__main__.FirstClass'>

Object

Object is one of instances of the class which can perform the functionalities which are defined in the class.

Now we can use the class named FirstClass to create objects

Example- Create object named o1 and print the value of x. Here object o1 can access x value.


o1=FirstClass()

print(o1.x)


5

The __init__() function

  • We have gone through Classes and objects in their simplest form, and are not really useful in real life applications.

  • To understand the meaning of classes we have to understand the built-in __init__() function.

  • All classes have a function called __init__(), which is always executed when the class is being initiated.

  • Use the __init__() function to assign values to object properties, or other operations that are necessary to do when the object is being created:

Example-Create a class named Student and use the init() function to assign values for name and age. 


class Student:

    def __init__(self, name, age):

        self.name = name

        self.age = age

p1 = Student("Smith", 16)

print(p1.name)

print(p1.age) 


Smith 16

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

Related questions

1 like 0 dislike
6 answers 3.9k views
asked Oct 30, 2019 in Python Programming by Goeduhub Goeduhub's Expert (9.3k points)
1 like 0 dislike
1 answer 365 views
1 like 0 dislike
1 answer 263 views
asked Oct 11, 2019 in Python Programming by Goeduhub Goeduhub's Expert (9.3k points)
0 like 0 dislike
5 answers 6.9k views
asked Oct 11, 2019 in Python Programming by Goeduhub Goeduhub's Expert (9.3k points)
0 like 0 dislike
1 answer 330 views

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...