gireesha Devara

gireesha Devara

2 Articles Published

Articles by gireesha Devara

2 articles

Locating Modules in Python

gireesha Devara
gireesha Devara
Updated on 01-Sep-2025 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. Locating Modules in Python When you write an import statement like import mymodule, the Python interpreter searches for the module in the following sequences: The current directory: Python first checks the directory of the current script. PYTHONPATH Environment Variable: If the module isn't ...

Read More

Add Two Numbers in Python

gireesha Devara
gireesha Devara
Updated on 20-Jun-2025 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 see different ways to add two numbers in Python. Using Arithmetic Operator To add two numerical values in Python, we can use the addition operation, 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 (+). # Assign values to the variables a = 7 b = ...

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