gireesha Devara

gireesha Devara

2 Articles Published

Articles by gireesha Devara

2 articles

Add Two Numbers in Python

gireesha Devara
gireesha Devara
Updated on 25-Mar-2026 3K+ Views

Adding two numbers in Python is one of the most basic tasks, where we need to combine their values to get a total. In this article, we will explore different ways to add two numbers in Python using various operators and built-in functions. Using Arithmetic Operator To add two numerical values in Python, we can use the addition operator, represented by the "+" symbol. It is one of the arithmetic operators in Python that performs the addition operation. Example Here is the basic example that adds the two numbers using the addition operator (+) − ...

Read More

Locating Modules in Python

gireesha Devara
gireesha Devara
Updated on 25-Mar-2026 2K+ Views

Locating modules in Python refers to the process of how Python finds and loads a module into our current program when we are trying to import it. Python's standard library comes with a large number of modules that we can use in our programs with the import statement. Module Search Process When you write an import statement like import mymodule, the Python interpreter searches for the module in the following sequence ? The current directory − Python first checks the directory of the current script. PYTHONPATH Environment Variable ...

Read More
Showing 1–2 of 2 articles
« Prev 1 Next »
Advertisements