Skip to content

Instantly share code, notes, and snippets.

@M-Shinoda
Last active July 4, 2021 01:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save M-Shinoda/10ee62409f1500ffec887ec9cbdec1fd to your computer and use it in GitHub Desktop.
total.py
def func(params):
total = 0
for i in range(int(params['param'])+1):
total += i
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment