Arul's Blog

python

Make a Countdown and Pomodoro Timer in Python | Intermediate Python Tutorial

Tue 23 February 2021 By Arulmurugan Rajaraman comments

In this tutorial, we’ll be creating a countdown timer that asks the user how much time (in seconds) they want to set the timer for — once time is up, print out “Blast Off!”.

Read more →

Make Your Own Virtual Zoom Background

Sat 12 December 2020 By Arulmurugan Rajaraman comments

A lot of video calling software like Zoom and Google Hangouts now let users use a virtual background behind them. In this project, we'll show you how to make your own virtual background graphic in Python with Turtle that you can use in your video calls!

Read more →

How to Make Rock Paper Scissors in Python

Tue 24 November 2020 By Arulmurugan Rajaraman comments

Let's learn how to code a classic game in Python. We’re going to use conditionals, while loops, and random numbers to make a Rock, Paper, Scissors game where you play against the computer!

Read more →

Python: Install Virtualenv and Virtualenvwrapper

Sun 13 September 2020 By Arulmurugan Rajaraman comments

Virtual environments is a must to manage project related packages efficiently when you work on different projects. This guide explains how to install and use virtualenv and virtualenvwrapper.

Read more →

Python: Install Pip and Pipenv

Sun 13 September 2020 By Arulmurugan Rajaraman comments

When you are into development using Python, you should know how to manage packages and virtual environments. Let's learn how to do that in this guide.

Read more →