Day 4: Dictionaries and Tuples in Python

Dictionaries and Tuples in Python

Welcome to Day 4 of our Python learning journey! In this lesson, we will explore two important data types in Python: dictionaries and tuples. Dictionaries A dictionary is a collection of key-value pairs, where each key maps to a specific value. Dictionaries are created using curly braces {}, with keys and values separated by colons … Read more

Day 2: Control Structures and Functions

Control Structures and Functions

Welcome back to our Python learning journey! Yesterday, we covered the basics of Python programming, including data types, variables, and input/output. Today, we’ll dive into control structures and functions. Control Structures Control structures are constructs that allow us to control the flow of our program based on certain conditions. The most common control structures are … Read more

Day 1: Introduction to Python

Day 1: Introduction to Python

Introduction to Python Welcome to Day 1 of our Python curriculum! In this lesson, we’ll introduce you to the Python programming language and get you started with writing your first program. Installing Python Before we can start programming in Python, we need to install it on our computer. You can download the latest version of … Read more

Create Git Aliases On PowerShell 7

Create Git Aliases On PowerShell 7

Overview Using aliases saves you time and helps you avoid typos. On my daily work as a developer, I have to issue git commands many times. Thanks to aliases, I can avoid many mistakes when typing commands. On Linux/Mac, it is super easy to create aliases with your bashrc/zhsrc file. However, you need extra work … Read more