File size: 63 Bytes
fe6a1fe
 
 
 
 
 
1
2
3
4
5
6
def test():
    yield 1
    return 2

a, b = test()
print(a, b)