Skip to content

Commit 84758d9

Browse files
authored
Remove "just", "simply", and "of course"
1 parent 3c002d5 commit 84758d9

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

en/python_introduction/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Type "help", "copyright", "credits" or "license" for more information.
2828

2929
After running the Python command, the prompt changed to `>>>`. For us this means that for now we may only use commands in the Python language. You don't have to type in `>>>` – Python will do that for you.
3030

31-
If you want to exit the Python console at any point, just type `exit()` or use the shortcut `Ctrl + Z` for Windows and `Ctrl + D` for Mac/Linux. Then you won't see `>>>` any longer.
31+
If you want to exit the Python console at any point, type `exit()` or use the shortcut `Ctrl + Z` for Windows and `Ctrl + D` for Mac/Linux. Then you won't see `>>>` any longer.
3232

3333
For now, we don't want to exit the Python console. We want to learn more about it. Let's start by typing some math, like `2 + 3` and hitting `enter`.
3434

@@ -101,7 +101,7 @@ or escaping the apostrophe with a backslash (`\`):
101101
"Runnin' down the hill"
102102
```
103103

104-
Nice, huh? To see your name in uppercase letters, simply type:
104+
Nice, huh? To see your name in uppercase letters, type:
105105

106106
{% filename %}command-line{% endfilename %}
107107
```python
@@ -174,7 +174,7 @@ Let's say we want to create a new variable called `name`:
174174

175175
We type name equals Ola.
176176

177-
As you've noticed, your program didn't return anything like it did before. So how do we know that the variable actually exists? Simply enter `name` and hit `enter`:
177+
As you've noticed, your program didn't return anything like it did before. So how do we know that the variable actually exists? Enter `name` and hit `enter`:
178178

179179
{% filename %}command-line{% endfilename %}
180180
```python
@@ -199,7 +199,7 @@ You can use it in functions too:
199199
5
200200
```
201201

202-
Awesome, right? Of course, variables can be anything – numbers too! Try this:
202+
Awesome, right? Now, variables can be anything – numbers too! Try this:
203203

204204
{% filename %}command-line{% endfilename %}
205205
```python
@@ -386,7 +386,7 @@ KeyError: 'age'
386386

387387
Look, another error! This one is a **KeyError**. Python is helpful and tells you that the key `'age'` doesn't exist in this dictionary.
388388

389-
When should you use a dictionary or a list? Well, that's a good point to ponder. Just have a solution in mind before looking at the answer in the next line.
389+
When should you use a dictionary or a list? Well, that's a good point to ponder. Think about the answer before looking at it in the next line.
390390

391391
- Do you just need an ordered sequence of items? Go for a list.
392392
- Do you need to associate values with keys, so you can look them up efficiently (by key) later on? Use a dictionary.
@@ -408,7 +408,7 @@ Like lists, using the `len()` method on the dictionaries returns the number of k
408408

409409
I hope it makes sense up to now. :) Ready for some more fun with dictionaries? Read on for some amazing things.
410410

411-
You can use the `pop()` method to delete an item in the dictionary. Say, if you want to delete the entry corresponding to the key `'favorite_numbers'`, just type in the following command:
411+
You can use the `pop()` method to delete an item in the dictionary. Say, if you want to delete the entry corresponding to the key `'favorite_numbers'`, type in the following command:
412412

413413
{% filename %}command-line{% endfilename %}
414414
```python
@@ -446,7 +446,7 @@ Excited for the next part? :)
446446

447447
> For readers at home: this part is covered in the [Python Basics: Comparisons](https://www.youtube.com/watch?v=7bzxqIKYgf4) video.
448448
449-
A big part of programming involves comparing things. What's the easiest thing to compare? Numbers, of course. Let's see how that works:
449+
A big part of programming involves comparing things. What's the easiest thing to compare? Numbers! Let's see how that works:
450450

451451
{% filename %}command-line{% endfilename %}
452452
```python
@@ -521,7 +521,7 @@ There are only two Boolean objects:
521521
- True
522522
- False
523523

524-
But for Python to understand this, you need to always write it as 'True' (first letter uppercase, with the rest of the letters lowercased). __true, TRUE, and tRUE won't work – only True is correct.__ (The same applies to 'False' as well, of course.)
524+
But for Python to understand this, you need to always write it as 'True' (first letter uppercase, with the rest of the letters lowercased). __true, TRUE, and tRUE won't work – only True is correct.__ (The same applies to 'False' as well.)
525525

526526
Booleans can be variables, too! See here:
527527

@@ -562,7 +562,7 @@ So far we've been writing all our python code in the interpreter, which limits u
562562
- Save some code into a new python file
563563
- Run it!
564564

565-
To exit from the Python interpreter that we've been using, simply type the `exit()` function
565+
To exit from the Python interpreter that we've been using, type the `exit()` function
566566

567567
{% filename %}command-line{% endfilename %}
568568
```python
@@ -633,7 +633,7 @@ And on Windows Powershell, it will be like this:
633633
<!--endsec-->
634634

635635

636-
If you get stuck, just ask for help.
636+
If you get stuck, ask for help.
637637

638638
Now use Python to execute the code in the file like this:
639639

0 commit comments

Comments
 (0)