Python program to the addition of two numbers | 4 different Methods In this tutorial, we will discuss the Python program to the addition of two numbers In this post, we are going to learn how to find the sum of two numbers through different 4 ways in Python programming language Program 1 Sum of…
Category: Python
Write a Python program to print an integer
Write a Python program to print an integer problem – How to write a program to print an integer in Python? In this tutorial, we discuss the simple concept of Write a Python program to print an integer In this article, we are going to learn How to write a program to print an integer…
Keywords in Python programming language
Keywords in Python programming language In this tutorial, we will discuss the Keywords in Python programming language Keywords are the reserved words in python Keywords are reserved words in python. We can not use a keyword as a variable name, function name or any other identifier language. 1. and – and is a logical operator…
Method overloading in Python language
Method overloading in Python language In this tutorial, we will discuss Method overloading in Python language Method overloading Method overloading is a OOP concept in Python language Method overloading Is not supported in Python, except in some situations. In case, you overload methods then you will be able to access the last defined method. we can…
Method overriding in Python language
Method overriding in Python language In this tutorial, we will discuss method overriding in Python language. Method overriding is a very important concept in object-oriented programming languages. It allows to change the implementation of the function that is already defined in the parent class. This means having two methods with the same name but performing…
Python language Numbers datatype
Python language numbers datatype In this tutorial, we will discuss the Python language Numbers datatype. In every programming languages, they have many data types. In Python, data types are used to classify every particular type of data. The number is one of the data types used to store numeric values in Python. Python supports four…
break statement in Python language
break statement in Python language In this tutorial, you will learn how vto use the break statement and how to control flow of the loop in Python . break can be used in both “while” and “for loop“. It controls the flow of the loops(for loop , while loop) and is used to terminate the control…
Continue statement in Python language
Continue statement in Python language In this tutorial. we will discuss the Continue statement in Python language In this post, we will learn about the usage of “continue” in “for loop” and “while loops” in Python. Continue is a keyword in python that is used to control the flow of loops. This statement can be…
python language hello world program
Python language hello world program In this tutorial, we will discuss the concept of python language hello world program. Python is a widely used high-level programming language. It is a very simple and easily understandable programming language. It has very simple syntax and easy to declare data.(No need for external data declaration.); We have…
Pass statement in Python language
Pass statement in Python language In this tutorial, we will discuss the concept of pass statement in Python language. In the Python programming language, the pass is a keyword(statements) that is used to indicate when nothing happens – the loops(for, while), function and class are empty. Syntex Syntex of the pass statements pass We can…