We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299aa8d commit d4f6745Copy full SHA for d4f6745
exercises/016-century/app.py
@@ -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
-
+# Complete the function to return the respective number of the century
4
def century(year):
5
return None
6
7
8
9
-#Invoke the function with any given year.
10
-print(century())
+# Invoke the function with any given year
+print(century())
0 commit comments