Created
June 10, 2020 15:23
-
-
Save snaffi/de03d88c7703814a5a0915c26cf5f3d0 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
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