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

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