29 lines
412 B
Python
29 lines
412 B
Python
# flags: --minimum-version=3.10
|
|
for x in *a, *b:
|
|
print(x)
|
|
|
|
for x in a, b, *c:
|
|
print(x)
|
|
|
|
for x in *a, b, c:
|
|
print(x)
|
|
|
|
for x in *a, b, *c:
|
|
print(x)
|
|
|
|
async for x in *a, *b:
|
|
print(x)
|
|
|
|
async for x in *a, b, *c:
|
|
print(x)
|
|
|
|
async for x in a, b, *c:
|
|
print(x)
|
|
|
|
async for x in (
|
|
*loooooooooooooooooooooong,
|
|
very,
|
|
*loooooooooooooooooooooooooooooooooooooooooooooooong,
|
|
):
|
|
print(x)
|