ZigZag - Beginner Python Project

Let’s learn some Python! Want an easy python program to get started? Here’s zigzag. This program is from Automate The Boring Stuff With Python Chapter 3, under A Short Program: Zigzag. Welcome to my third study session to learn Python Programming! The video above covers the entire process of copying the zig zag program from Automate The Boring Stuff With Python. See Built-in Functions, Time access and conversions and What does end=’ ‘ exactly do?...

19/10/2021 · 2 min · 357 words · Mr Ash

Random Number Generator • Easy Python Project

Want an easy python project to get you started learning python? Here’s a random number generator built-in python! See the project live below or via GitHub. Okay, let’s build your very own number generator python program. Foundation Let’s write the program in stages. But first, it’s recommended to write out pseudo code as it helps to map out and plan the program before you deep dive into writing it....

17/10/2021 · 4 min · 775 words · Mr Ash

Bagels • Beginner Python Project

Want a beginner Python Project that’s going to test you? A program longer than 40 lines of code? Look no further, here’s Bagels! This is from The Big Book of Small Python Projects – Chapter 1 Bagels. Watch the Study Session #2 for the full programming behind the scenes. Disclaimer, some areas of this blog post are still under construction, look for Work In Progress (WIP). Global Variables, Main Function Let’s break Bagels down....

16/10/2021 · 4 min · 787 words · Mr Ash

Hashing Passwords • Python Module Basics

Hashing is the foundation of tech like blockchains that make cryptocurrencies possible. See Blockchain 101 – A Visual Demo and Blockchain 101 – Part 2 – Public / Private Keys and Signing. So for a fun study session, let’s follow a walkthrough on Password Hashing in Python, see the original post by DillonB07. Watch live video: 1. Update Python and Pip Update both pip and Python before starting this program....

16/10/2021 · 1 min · 119 words · Mr Ash

Username Generator Beginner Python Program

Usernames, we all have one, maybe for work or on Twitter. How about a python program that automatically generates a username based on your name? Sound cool? Let’s make a simple project to generate usernames. See the live program below: Disclaimer, this is not a python tutorial, for that, see Intro To Python. Core Code Let’s get the core elements down for the username generator. First, displaying the title via print() and then using two variables with input()....

16/10/2021 · 3 min · 489 words · Mr Ash