Welcome to aipython

We create high quality technical contents for everyone in the form of Video, Article and Tutorials. Our focus is on Python and Raspberry Pi

Who we are ?

We are a group of self-taught programmers who have developed coding skills over the years. We and Python (of course the programming language) are friends since a decade. We are experienced in working on numerous projects starting from very basic to highly complex ones. Python has spilled out of our professional life into our hobby and creative space.

aipython_about_us_3

Our Recent Posts

price compare python
aipython

Python project – price compare eCommerce

In this Web scraping with Python project, the script searches for a specified product via URL (weblink) and find out the price at that moment. This is particularly useful when you want to monitor the price of the specific item (or items) from multiple eCommerce platforms. Here, in this program, we have targeted three major eCommerce website (Flipkart

Read More »
python web scraping stock price
aipython

Python project – realtime stock price

This project describes a Python code, which fetches the current stock price for multiple listed companies. This script first reads the excel sheet to get the list of all companies for which CMP (Current Market Price) has to be calculated and then fire up the browser to open a website which has this information. The automation script enters the name of each stock, one by one,

Read More »
python break
aipython

Python break, pass and continue

Python break facilitates the early exit from a loop. Control structure provides certain loops such as Python for loop, while loop, which helps in executing a block of code as many times as required. As a programmer, you can choose any looping structure which serves the purpose. On many occasions, you don’t want the loop to continue executing till the end but it

Read More »
Python while loop
aipython

Python while loop

Python while loop is of indefinite iteration type, which means the number of times a loop is going to execute is not defined well in advance. The while loop keeps on executing until the condition stays True. Unlike python for loop, while loop does not have incremental/decremental iterator. If the iteration is known in advance then choose for loop otherwise choose while loop.

Read More »

Most viewed Videos

Scroll to Top