Skip to content

Commit 7ab5c4a

Browse files
authored
Update 03-types-conversion.md
Corrected the order of the expressions in 'Division Types' section.
1 parent a23f723 commit 7ab5c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/03-types-conversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ first is 2 and second is 5
285285
> calculates the modulo division:
286286
>
287287
> ~~~
288-
> print('5 // 3:', 5//3)
289288
> print('5 / 3:', 5/3)
289+
> print('5 // 3:', 5//3)
290290
> print('5 % 3:', 5%3)
291291
> ~~~
292292
> {: .python}

0 commit comments

Comments
 (0)