Skip to content
Open
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 Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ pytest = "7.1.3"
[dev-packages]

[requires]
python_full_version = "3.8.13"
python_full_version = "3.10.6"
36 changes: 18 additions & 18 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ print("Hello sky!")
What do you see when you execute `lib/app.py` from the command line?

```console
$ python lib/app.py
$ python3 lib/app.py
# => Hello world!
# => Hello sun!
# => Hello sky!
Expand All @@ -126,7 +126,7 @@ What do you see when you execute `lib/app.py` from the command line with these n
`end` strings?

```console
$ python lib/app.py
$ python3 lib/app.py
# => Hello world! Hello sun!!! Hello sky!!!!
```

Expand All @@ -145,9 +145,8 @@ code, or check your syntax, without needing to run an entire application.
To use the Python shell, go into the terminal and enter `python`:

```console
$ python
Python 3.8.13 (default, Jun 2 2022, 15:59:12)
[Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin
$ python3
Python 3.10.12 (main, Jun 11 2023, 05:26:28)
Type "help", "copyright", "credits" or "license" for more information.
>>>
```
Expand All @@ -156,10 +155,10 @@ This gives you a prompt where you can enter Python code. Try entering in
`print("Hello Python shell")`:

```console
$ python
Python 3.8.13 (default, Jun 2 2022, 15:59:12)
[Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin
$ python3
Python 3.10.12 (main, Jun 11 2023, 05:26:28)
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> print("Hello Python shell")
# => Hello Python shell
```
Expand Down
1 change: 1 addition & 0 deletions lib/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World! Pass this test, please.")