Summer Coding Camp Week 1
Hi all, I am coaching a small group of high schoolers this summer on coding and technology in general. I would like to share the materials and hope you will…
Hi all, I am coaching a small group of high schoolers this summer on coding and technology in general. I would like to share the materials and hope you will…
This article explains how to set up your machine for Python Development. The steps summary: Install Visual Code (if not already installed) Install python 3. Install Visual Code Python Plugin…
In this article, we will give a quick overview of what a Python Program looks like and also touch on the "Anatomy" of a Program. What is a Python Program…
Follow the instruction from Day 1 to create another python project. In this python project, create a file called flip.py How does a Coin Clip game work? A coin flip…
On Day 2, we created a Coin Flip App to demonstrate Import, If-Else, For Loop, Red From User Input, Random Number, and Logging. Today, let's create a Python Quiz App…
This entry explains what is a Python For Loop and how you can use it in code. In Python, a for loop is used to iterate over a sequence of…
This entry explains what is an input function and how to use it to get user input from the command line. In Python, the input() function is used to read…
This entry explains what is Python random module and how you can use it to generate pseudo-random numbers. We will also touch on how to improve the randomness of the…
This entry is based on Python3.11 documentation and lists Python syntax less familiar to a Java developer. It only covers up to chapter 4 (https://docs.python.org/3/tutorial/controlflow.html). Control Flow Tools The control…
What is a Python Environment and Python Virtual Environment? Python environment refers to the combination of software and settings that enable you to write, run, and manage Python programs. It…