Skip to content

Commit

Permalink
Merge pull request #3014 from enkidevs/syntax-and-numerical-operators
Browse files Browse the repository at this point in the history
Syntax and numerical operators
  • Loading branch information
Stefan-Stojanovic authored Jan 10, 2022
2 parents 98a5b69 + 7c7c232 commit 594fe50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Types of change:
### Changed
- [Html - Link Relative Paths - Change part of PQ as it wasn't worder properly](https://github.com/enkidevs/curriculum/pull/2985)
- [Python - Format Text Paragraphs With Textwrap - Make the fill method more clear](https://github.com/enkidevs/curriculum/pull/2981)
- [Python - Syntax And Numerical Operators - Move single-line commands to a single line, update indentation in codeblocks from 4 to 2 spaces](https://github.com/enkidevs/curriculum/pull/3014)
- [Python - Testing - Move single-line commands to a single line, update indentation in codeblocks from 4 to 2 spaces](https://github.com/enkidevs/curriculum/pull/3015)
- [Python - Unordered Data Types - Move single-line commands to a single line, update indentation in codeblocks from 4 to 2 spaces](https://github.com/enkidevs/curriculum/pull/3016)
- [Python - Utilities I - Move single-line commands to a single line, update indentation in codeblocks from 4 to 2 spaces](https://github.com/enkidevs/curriculum/pull/3017)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ If you want to perform floor division to return an `int`, use the `//` operator:
# 6
```

When using the `//` operator, you only return the whole number part of the division. Any digits after the decimal point will be removed.
When using the `//` operator, you only return the whole number part of the division. Digits after the decimal point are removed.


---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ number = 10
number = 100
```

Initially the value of `number` was `10`. Later it was changed to `100`.
Initially, the value of `number` was `10`. Later it was changed to `100`.

```python
print(number)
Expand Down

0 comments on commit 594fe50

Please sign in to comment.