GitHubbing with VS Code. Just trying to figure this out. example code: def addition(*args): total = sum(args) print(f'\nSum of {args} is: {total}') addition(3.14, 5, 80) # Output - 88.14