Skip to content

Commit 4e96dca

Browse files
committed
some changes
1 parent abc27ba commit 4e96dca

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

readme.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,22 @@ python
146146
![Python Scripting Shell](./images/opening_python_shell.png)
147147

148148
The Python interactive shell is opened and it is waiting for you to write Python code(Python script). You will write your Python script next to this symbol >>> and then click Enter.
149-
Let us write our very first script on the Python scripting shell.
150149

151-
![Python script on Python shell](./images/adding_on_python_shell.png)
150+
```py
151+
asabeneh@Asabeneh:~$ python --version
152+
Python 3.9.6
153+
```
152154

153155
Well done, you wrote your first Python script on Python interactive shell. How do we close the Python interactive shell ?
154156
To close the shell, next to this symbol >> write **exit()** command and press Enter.
155157

156-
![Exit from python shell](./images/exit_from_shell.png)
158+
```py
159+
asabeneh@Asabeneh:~$ python
160+
Python 3.9.6 (default, Jun 28 2021, 15:26:21)
161+
[Clang 11.0.0 (clang-1100.0.33.8)] on darwin
162+
Type "help", "copyright", "credits" or "license" for more information.
163+
>>> |
164+
```
157165

158166
Now, you know how to open the Python interactive shell and how to exit from it.
159167

0 commit comments

Comments
 (0)