Skip to content

Instantly share code, notes, and snippets.

@Ken-Kuroki
Created July 5, 2018 11:45
Show Gist options
  • Save Ken-Kuroki/e3c94aed45df3873f3ed17536d1c9726 to your computer and use it in GitHub Desktop.
Save Ken-Kuroki/e3c94aed45df3873f3ed17536d1c9726 to your computer and use it in GitHub Desktop.
Power Series
# For plotting with log-scale
def makebin(start, end):
bins = []
for i in range(start, end, 1):
bins.append(10**i)
return bins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment