From 13da5609620983bdcc17bb4a3abd912077318dd4 Mon Sep 17 00:00:00 2001 From: Angie Date: Tue, 10 Sep 2024 16:09:15 -0700 Subject: [PATCH] Update 01.Introduction-to-programming.md add hyperlink, print nit --- 01.Introduction-to-programming.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/01.Introduction-to-programming.md b/01.Introduction-to-programming.md index 4d95872..bf71504 100644 --- a/01.Introduction-to-programming.md +++ b/01.Introduction-to-programming.md @@ -61,7 +61,7 @@ Each of these application are using python in a certain way, and as you can see ### For `Windows` Users **Step 1: Download Python** -- Visit the official Python website at python.org. +- Visit the official Python website at [python.org](python.org). - Navigate to the Downloads section and download the latest version of Python for Windows. **Step 2: Download Python** @@ -79,7 +79,7 @@ Each of these application are using python in a certain way, and as you can see ### For `macOS` Users **Step 1: Download Python** -- Visit the official `Python` website at python.org. +- Visit the official `Python` website at [python.org](python.org). - Under the Downloads section, choose the macOS version and download it. **Step 2: Run the installer** @@ -156,7 +156,7 @@ The `print()` command allows you to specify multiple #### Example ```python -print("I", "will" "become", "a" "software", "engineer") +print("I", "will" "become", "a" "software", "engineer!") ``` #### Output