Skip to content

Commit d4f6745

Browse files
authored
Update app.py
1 parent 299aa8d commit d4f6745

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

exercises/016-century/app.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
#Complete the function to return the respective number of the century
2-
#HINT: You may need to import the math module.
3-
1+
# Complete the function to return the respective number of the century
42
def century(year):
53
return None
64

75

8-
9-
#Invoke the function with any given year.
10-
print(century())
6+
# Invoke the function with any given year
7+
print(century())

0 commit comments

Comments
 (0)