Tag: Python Example

Learn Python Programming from Scratch with a lot of Daily Use Python Examples. Common Python Example with smart clarification.

How to Create a Screen Recorder Using Python

Last updated on 16th May 2021 by [email protected] | Category: Python Tutorial

Screen recorders are used by many people for many purposes like: for example, recording classes, YouTube streaming and many more. But finding the perfect screen recorder may be difficult. So why not build our own screen recorder with a few lines of code. Lets get started. Screen Recorder Project Requirements:   Basic knowledge of python(go […]

Read more 

Make Your Own Search Engine Using Python

Last updated on 27th November 2021 by [email protected] | Category: Python Tutorial

Make your own search engine using python. In this tutorial, we will learn how to create a search engine using python, beautiful soup , tkinter , requests . Let’s get started. Making GUI(Graphical User Interface) for our project For making the GUI we will be using tkinter. Tkinter is the Python interface to the Tk […]

Read more 

Making A Drink Water Reminder Using Python

Last updated on 16th May 2021 by [email protected] | Category: Python Tutorial

Hi there, today we will be talking about something very serious. We have seen most of the programmers are more concerned about their codes than their own health. As a result, we face some major health issues (for example:- Muscle Cramps, Constant Headache , decreased urine output, sleepness etc.) .” An healthy programmer is a […]

Read more 

Disabling and Enabling Wi-Fi Option Using Python

Last updated on 11th May 2021 by [email protected] | Category: Python Tutorial

In this tutorial, we will see how we can use small and simple but interesting python scripts for enabling and disabling wi-fi option of our laptop or desktop. So let’s get started right away. Disabling Wi-Fi Option Using Python Requirements:  Basic knowledge of python( Learn Python Tutorial). We can use any ide ( for example: […]

Read more 

Getting Platform System Information Using Python

Last updated on 9th May 2021 by [email protected] | Category: Python Tutorial

Hi there, today we will be talking about something which is very interesting as well as simple: Getting platform information using Python. A few lines of code can be used to get all the information. So let’s get started right away. Getting System Information using Python Requirements:   Basic knowledge of python(Learn Python Tutorial) . […]

Read more 

Desktop Battery Percentage Notifier using Python

Last updated on 9th May 2021 by [email protected] | Category: Python Tutorial

Hi there, today we will be talking about something which is very interesting as well as simple: Create a desktop notifier using Python and for better understanding we will make a desktop battery percentage notifier using python. A few lines of code help to develop this notifier. So ,let’s get started right away. Python Battery […]

Read more 

Python Program to Swap Two Numbers

Last updated on 6th December 2021 by H Sayyed | Category: Python Tutorial

Python Program to Swap Two Numbers To understand this example, you should have knowledge of following Python programming topics: Python – Operators There are two ways to swap two numbers: Without Using Temporary Variable Using Temporary Variable Source Code: Swap Using a temporary variable (Python Program to Swap) # Python Program to Swap Two Variables Using […]

Read more 

Prime Number Program in Python

Last updated on 6th December 2021 by H Sayyed | Category: Python Tutorial

How To Check Prime Number in Python Program A number that is divisible only by itself and 1 (i.e. 2, 3, 5, 7, 11) is called Prime Number. Note: 0 and 1 are not Prime Number To understand this example, you should have knowledge of following Python programming topics: Python – If…Else Condition Python – Function […]

Read more 

Check if a Number and String is Palindrome Python

Last updated on 9th May 2021 by H Sayyed | Category: Python Tutorial

A word, phrase, or sequence that reads identical backwards as forwards. For Example – dad, mom, madam, 121, 1120211 To understand this example, you should have knowledge of following Python programming topics: Python – If…Else Condition Python – Operators Python – List Python – String Source Code – Python program to check if a string is […]

Read more 

Odd Even Number Program – Python

Last updated on 6th December 2021 by H Sayyed | Category: Python Tutorial

How do you define odd and even numbers in Python? Odd Even Number Program – Python When you divide a number by 2 and it leaves a remainder of 0, it is called an even number and otherwise an odd number. Python Program to Check if a Number is Odd or Even 1 num = […]

Read more