Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

another typo #593

Merged
merged 2 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion episodes/00-before-we-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Programming is a multi-step process that involves the following steps:
1. Identifying the aspects of the real-world problem that can be solved computationally
2. Identifying (the best) computational solution
3. Implementing the solution in a specific computer language
4. Testing, validating, and adjusting implemented solution.
4. Testing, validating, and adjusting the implemented solution.

While *"Programming"* refers to all of the above steps,
*"Coding"* refers to step 3 only: *"Implementing the solution in a specific computer language"*. It's
Expand Down
2 changes: 1 addition & 1 deletion episodes/01-short-introduction-to-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ is excellent for reference on the differences between them.
**Tip**: When editing scripts like *example.py*, be careful not to use word
processors such as MS Word, as they may introduce extra information that
confuses Python. In this lesson we will be using either Jupyter notebooks or
the Spyder IDE, and for your everday work you may also choose any text editor
the Spyder IDE, and for your everyday work you may also choose any text editor
such as Notepad++, VSCode, Vim, or Emacs.

### Operators
Expand Down
Loading