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 d7f1481 commit fb4eac5Copy full SHA for fb4eac5
.learn/resets/06-lambda-function-two/app.py
@@ -0,0 +1,5 @@
1
+
2
3
4
+# Your code above, please do not change code below
5
+print(rapid("bob")) # Should print "bo"
exercises/06-lambda-function-two/app.py
@@ -1,5 +1,5 @@
-
+rapid = lambda string: string[:-1]
# Your code above, please do not change code below
print(rapid("bob")) # Should print "bo"
0 commit comments