You've been working with a group of interns to build a damage meter for Fantasy Quest... it's not going well.
Fix the interns' syntax error. The calculate_dps function should accept two arguments, but due to a syntax error, it's being called with 4 instead. Use the proper delimiter for thousands so that the numbers are still easy to parse visually.
The two numbers should be:
damage: 8 million, time: 45damage: 10 million, time: 49In normal text, 1,000,000,000 is one billion written with commas as the delimiters for better legibility. In Python, commas can't be used this way, but you can use underscores instead: 1_000_000_000.