Replies: 1 comment
-
Thanks for kicking off this discussion!
Final format submission is pdf:
If you want to use
You can time cells with %% time
x = 1
for i in range(10):
x *= i Here I'm timing a factorial operation It automatically prints the result of the timed operation. It changes each time you run it, so if you want a more stable result, use e.g. %% timeit
x = 1
for i in range(10):
x *= i |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two questions regarding homework submission in general:
Please advise!
Beta Was this translation helpful? Give feedback.
All reactions