Spaces:
Running
Running
def test(): | |
yield 1 | |
return 2 | |
a, b = test() | |
print(a, b) |
def test(): | |
yield 1 | |
return 2 | |
a, b = test() | |
print(a, b) |