0
I’m new someone can help me
# Convert the values into numbers wins = input() ties = input() # 1 win = 3 points # 1 tie = 1 point # Calculate the score score = # Concatenate the 2 strings to produce a message message = "Score: " str(score) # Display the message
2 ответов
0
Kindly show you attempt instead of sample code and paste it in code playground and attach it here
0
How do you calculate the score? 1 win gives you 3 points, so you'd need to take the wins and multiply the result by 3. Ties can be added on.