rmiles4421 rmiles4421 09-09-2022 Computers and Technology contestada What is the output? def reset(data): data = [] print(data, end=' ') data = [15, 0, 47, 12, 0] reset(data) print(data)