Last year we created a High Low Guessing Game as part of our series on Super Simple Python projects. In that game, the computer picks a number and then you guess the numbers. With each guess, the computer will tell you if the number you guessed is higher or lower than the number it picked.Continue reading “Can Python Guess Your Number?”
Tag Archives: Beginner Python Project
Super Simple Python: Reading and Writing to a Text File
Reading and writing to a text file are two of the most basic ways to import and export data with Python. In 2022, Python is strongly known for machine learning use cases. While text files are not traditionally thought of as ML data containers, they can often be the medium of inference. For example, IContinue reading “Super Simple Python: Reading and Writing to a Text File”
Super Simple Python: Plot a Random Dataset
Super Simple Python is a series of Python projects you can do in under 15 minutes. In this episode, we’ll be covering how to build a simple way to plot a random dataset in 10 lines of Python! For a video version: Much like the Dice Roll Simulator, Random Number Generator, High Low Guessing Game,Continue reading “Super Simple Python: Plot a Random Dataset”
Super Simple Python: Unit Convertor
Super Simple Python is a series of Python projects you can do in under 15 minutes. In this episode, we’ll be covering how to build a simple unit convertor in under 25 lines of Python! For a video version: Unit conversion is annoying for humans at best, but very simple for machines. If you wentContinue reading “Super Simple Python: Unit Convertor”
Super Simple Python: Hangman
Super Simple Python is a series of Python projects you can do in under 15 minutes. In this episode, we’ll be covering how to build a simple hangman game in under 25 lines of Python! For a video version: Like many of the Super Simple Python posts we’ve covered, Hangman is also reliant on theContinue reading “Super Simple Python: Hangman”
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: 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”