Skip to content

Commit e6a93b3

Browse files
committed
Remove underscores and fix chapter section numbering
1 parent 3024506 commit e6a93b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ch05-numbers-in-python/2-integers-and-floating-point-numbers.py renamed to ch05-numbers-in-python/1-integers-and-floating-point-numbers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# 5.3 - Integers and Floating-Point Numbers
1+
# 5.1 - Integers and Floating-Point Numbers
22
# Solutions to Review Exercises
33

44

55
# Exercise 1
66
num1 = 25_000_000
7-
num2 = 25_000_000
7+
num2 = 25000000
88
print(num1)
99
print(num2)
1010

0 commit comments

Comments
 (0)