Skip to content

Commit 26b4ac3

Browse files
committed
Minor edits
1 parent b0a9888 commit 26b4ac3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,12 +308,12 @@ Most data is text and numbers, but there are many other types.
308308
### **Challenge**: Explain what each operator does
309309
310310
``` python
311-
# Floor
312-
print('5 // 3:', 5 // 3)
313-
314311
# Floating point
315312
print('5 / 3:', 5 / 3)
316313
314+
# Floor
315+
print('5 // 3:', 5 // 3)
316+
317317
# Modulus (remainder)
318318
print('5 % 3:', 5 % 3)
319319
```

README.org

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,12 +317,12 @@ Most data is text and numbers, but there are many other types.
317317

318318
*** *Challenge*: Explain what each operator does
319319
#+BEGIN_SRC python
320-
# Floor
321-
print('5 // 3:', 5 // 3)
322-
323320
# Floating point
324321
print('5 / 3:', 5 / 3)
325322

323+
# Floor
324+
print('5 // 3:', 5 // 3)
325+
326326
# Modulus (remainder)
327327
print('5 % 3:', 5 % 3)
328328
#+END_SRC

0 commit comments

Comments
 (0)