Super Simple Python: High Low Guessing Game

Super Simple Python is a series dedicated to creating super simple Python projects for beginners to be able to do in under 15 minutes. In this episode, we’ll be covering how to build a high low guessing game in under 15 lines of code! For a video version see: Like many of the projects we’veContinue reading “Super Simple Python: High Low Guessing Game”

Super Simple Python: Dice Roll Simulator

Super Simple Python is a series dedicated to creating super simple Python projects for beginners to be able to do in under 15 minutes. In this episode, we’ll be covering building your own dice roll simulator in under 10 lines of code. For a video guide see Deciding Which Dice Rolls We Want to SimulateContinue reading “Super Simple Python: Dice Roll Simulator”

Super Simple Python: Rock Paper Scissors

Super Simple Python is a series dedicated to creating super simple Python projects for beginners to be able to do in under 15 minutes. In this episode, we’ll be covering building a rock paper scissors game in under 30 lines of code! Video version: Just like the Super Simple Python: Random Number Generator, we’ll startContinue reading “Super Simple Python: Rock Paper Scissors”

Super Simple Python: Make Your Own Contacts List

Super Simple Python is a series dedicated to creating super simple Python projects for beginners to be able to do in under 15 minutes. In this episode, we’ll be covering building your own contacts list in Python and persisting it in a JSON file in under 20 lines of code! Video version here: Create OurContinue reading “Super Simple Python: Make Your Own Contacts List”

Super Simple Python: Random Number Generator

Super Simple Python is a series dedicated to creating super simple Python projects for beginners to be able to do in under 15 minutes. In this episode, we’ll be covering building a Python random number generator in under 10 lines of code! Video version here: We’ll begin by importing the random module. This is aContinue reading “Super Simple Python: Random Number Generator”

How to Send an Email with an Attachment in Python

In our last post, we went over how to send a simple email. In this post, we’ll go over how to send an email with an attachment, just like last time, we’ll be using Gmail. Before we get started, ensure that your Gmail account has 2-Step Verification enabled. If you haven’t enabled it, go checkContinue reading “How to Send an Email with an Attachment in Python”

How to Send Simple Emails in Python

It’s not exactly the hardest thing to get on a web browser or open an email app and send emails. Wouldn’t it be cool to be able to send emails programmatically though? In this post we’ll go over how to send a simple email with Python. At the end of this tutorial, you should beContinue reading “How to Send Simple Emails in Python”