Skip to content
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
4 changes: 2 additions & 2 deletions lectures/python_essentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Recall that Python maintains a concept of the present working directory (pwd) th

If a path is not specified, then this is where Python writes to.

We can also use Python to read the contents of `newline.txt` as follows
We can also use Python to read the contents of `newfile.txt` as follows

```{code-cell} python3
f = open('newfile.txt', 'r')
Expand Down Expand Up @@ -1092,4 +1092,4 @@ n = 100
```

```{solution-end}
```
```