Ads block
Class in Python
Class The class can be defined as a collection of objects. It is logical entity that has some specific attributes and methods . for example if you hav…
Read more »
The Self Parameter
Self Parameter The self parameter is a reference to the current instance of the class and is used to access variables that belongs to the class. Cl…
Read more »
Python OOPS Concept
Python OOPS Like other general-purpose programming languages, Python is also an object-oriented language. It allows us to develop applications usin…
Read more »
Python Quiz 8
Q:1. In Python, a class is created by _________ keyword, and to create ________ of the class, we will have to use constructor of class. Answer : 2. c…
Read more »
Python Quiz 7
Q:1. Naming convention of a module of a python file is ? Answer : 4. All of the above Q:2. The following code is saved in a file hello.py(using p…
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
Search This Blog
Powered by Blogger.
Blog Archive
- July 2023 (1)
- January 2023 (4)
- December 2022 (1)
- May 2022 (1)
- December 2021 (4)
- November 2021 (12)
- October 2021 (2)
- August 2021 (1)
- July 2021 (19)
- June 2021 (5)
- May 2021 (29)
- April 2021 (11)
- March 2021 (3)
Operators in C
Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical operations, based on the value provi...