Skip to content

Commit f9c2933

Browse files
authored
Update augmented_assignment_operators.py
1 parent 88167a6 commit f9c2933

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Ch03/augmented_assignment_operators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
foo //= 5 # value is now 48 (240 // 5)
66
foo /= 4 # value is now 144.0 (48 / 4)
77
foo **= 2 # value is now 144.0 (12.0 ** 2)
8-
foo %= 51 # value is now 42.0 (144.0 % 15)
8+
foo %= 51 # value is now 42.0 (144.0 % 51)

0 commit comments

Comments
 (0)