Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update 01.Introduction-to-programming.md #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 01.Introduction-to-programming.md
Original file line number Diff line number Diff line change
@@ -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 <span style="color:orange">multiple
#### Example

```python
print("I", "will" "become", "a" "software", "engineer")
print("I", "will" "become", "a" "software", "engineer!")
```

#### Output