Skip to content

Commit 036ad99

Browse files
meatball133BethanyG
authored andcommitted
Fixes
1 parent 065ef79 commit 036ad99

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

exercises/concept/electric-bill/.docs/introduction.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Numbers containing a decimal point (with or without fractional parts) are identi
2929

3030
Python fully supports arithmetic between these different number types, and will convert narrower numbers to match their less narrow counterparts when used with the binary arithmetic operators (`+`, `-`, `*`, `/`, `//`, and `%`).
3131

32-
3332
### Addition and subtraction
3433

3534
Addition and subtraction operators behave as they do in normal math.
@@ -96,7 +95,6 @@ The modulo operator (`%`) returns the remainder of the division of the two opera
9695

9796
Another way to look at 5 % 3:
9897

99-
10098
```python
10199
>>> whole_part = int(5/3)
102100
1
@@ -149,7 +147,6 @@ This means calculations within `()` have the highest priority, followed by `**`,
149147
>>> 2 + 3 * 4 ** 4
150148
770
151149
```
152-
[arbitrary-precision]: https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic
153150

154151
## Precision & Representation
155152

@@ -161,6 +158,7 @@ Complex numbers have a `real` and an `imaginary` part, both of which are represe
161158
For a more detailed discussions of the issues and limitations of floating point arithmetic across programming languages, take a look at [0.30000000000000004.com][0.30000000000000004.com] and [The Python Tutorial][floating point math].
162159

163160
[0.30000000000000004.com]: https://0.30000000000000004.com/
161+
[arbitrary-precision]: https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic
164162
[bin]: https://docs.python.org/3/library/functions.html#bin
165163
[complex]: https://docs.python.org/3/library/functions.html#complex
166164
[decimals]: https://docs.python.org/3/library/decimal.html#module-decimal

0 commit comments

Comments
 (0)