python
Make a Countdown and Pomodoro Timer in Python | Intermediate Python Tutorial
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!”.
Make Your Own Virtual Zoom Background
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!
How to Make Rock Paper Scissors in Python
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!
Python: Install Virtualenv and Virtualenvwrapper
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.
Python: Install Pip and Pipenv
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.