What does this program print?

from *args and **kwargs
Python 3.14 beginner 2 min

What does this program print?

Python
def collect(batch, /, *values, scale=1, **labels):
    print(batch)
    print(values)
    print(scale)
    print(labels)

collect("night", 2, 3, scale=10, owner="Lin")
Open in playground
Report an error