What is the output of the following function call? def summa…
What is the output of the following function call? def summarize_data(name, *values): count = len(values) total = sum(values) print(f”{name}: {count} items, Sum={total}”) summarize_data(“Q4 Sales”, 10, 20, 30)