Skip to content

Commit 7d5129f

Browse files
committed
comments
1 parent 9124ba7 commit 7d5129f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

basics/variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ underscores. For example, these variable names are good:
163163
Don't use variable names like this, **these variables are _bad_**:
164164

165165
```python
166-
>>> magicNumber = 3.14
167-
>>> Greeting = "Hello there!"
168-
>>> x = "Hello again!"
166+
>>> magicNumber = 3.14 # looks weird
167+
>>> Greeting = "Hello there!" # also looks weird
168+
>>> x = "Hello again!" # what the heck is x?
169169
>>>
170170
```
171171

0 commit comments

Comments
 (0)