37.2k views
2 votes
(ANYONE GOOD AT PYTHON!?)

Write a program that outputs some Leaderboard. Pick something that interests you.

You must have a minimum of 3 rows of data and 2 columns (name can be one).


I created 6 variables called player_1, player_2 and player_3, points_1, points_2 and points_3. Be sure to use meaningful names. I centered the names and right-justified the total points. You may format your data to your liking, but the output must be in clean rows and columns.

User Jcalz
by
6.9k points

1 Answer

3 votes

Answer:

# Python Recap

def main():

runTimeInMinutes = 95

movieTitle = "Daddy Day Care"

print(movieTitle)

movieTitle = "Hotel for Dogs"

print(movieTitle)

print(runTimeInMinutes)

main()

Step-by-step explanation:

User Brettski
by
7.0k points