# speed.py # A program to calculate and print speeding ticket costs. # Name: # Date: # Lab 04 # Ask user how many tickets, loop through asking for data and calculate # results. def main(): ticketCount = int(input("How many tickets have you gotten? ")) for ticket in ticketCount: # Ask user for speed limit and clocked speed # Calculate cost of this ticket. Print it out and add to the # running total. # Print out the total of all the tickets.