Skip to content

Instantly share code, notes, and snippets.

@snaffi
Created June 10, 2020 15:23
Show Gist options
  • Save snaffi/de03d88c7703814a5a0915c26cf5f3d0 to your computer and use it in GitHub Desktop.
Save snaffi/de03d88c7703814a5a0915c26cf5f3d0 to your computer and use it in GitHub Desktop.
def foo(i): pass
def bar(i): pass
for i in range(10):
foo_result = foo(i)
print('результат фуу', foo_result)
bar_result = bar(i)
print('результат бар', bar_result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment