-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors found in functions_advanced
notebook
#170
Comments
functions_advanced.ipynb
notebook
In the |
functions_advanced.ipynb
notebookfunctions_advanced
notebook
Suggestion: In Fibonnaci sequence using reduce, maybe it would be helpful to also have a reminder that reduce can have a 3rd entry which is the starting point for the sum |
In the last example (
|
In the example code in the same example ( import time
@once(15)
def hello(name):
return f"Hello, {name}!"
for i in range(30):
print(i)
try:
time.sleep(3)
print(hello(f"attempt #{i}"))
except TooSoonError as err:
print(f"Too soon: {err}") the example error is defined as |
No description provided.
The text was updated successfully, but these errors were encountered: