Last active
August 2, 2018 20:04
-
-
Save bee-san/51646026b196b7736302da41b87ff035 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from functools import partial | |
| powers = [] | |
| for x in range(2, 1001): | |
| powers.append(partial(power, exponent = x)) | |
| print(powers[0](3)) | |
| # output is 9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment