I have the following line in my python program
print "Player 1: " +str(player1points)
where 'player1points' is calculate in my program.
The results yield:
Player 1: 3
where the '3' was what the program calculated for that run.
However for one particular function I managed to get help from here
def sort_players(players):
r"""Sort the players by points.
>>> print sort_players('Player 1: 3\n'
... '\n'
... 'Player 2: 4\n'
... '\n'
... 'Player 3: 3\n'
... '\n'
... 'Player 4: 5\n')
Player 4: 5
Player 2: 4
Player 1: 3
Player 3: 3
"""
# split into a list
players = players.split("\n")
# filter out empty lines
players = [player for player in players if player != '']
def points(player_report):
"""Parse the number of points won by a player from a player report.
A "player report" is a string like 'Player 2: 6'.
"""
import re
# Match the last string of digits in the passed report
points = re.search(r'\d+$', player_report).group()
return int(points)
# Pass `points` as a "key function".
# The list will be sorted based on the values it returns.
players.sort(key=points, reverse=True)
# Make the sorted list back into a string.
return "\n".join(players)
The function will only accept an input:
Player 1: 3
and not:
"Player 1: " +str(player1points)
Even though it appears to me that they both yield the same result, how will I be able to to convert
"Player 1: " +str(player1points)
into the appropriate input so the function will accept it.
Examples:
sort_players('Player 1: 3\n'
'\n'
'Player 2: 4\n'
'\n'
'Player 3: 3\n')
Will give me
Player 2: 4
Player 1: 3
Player 3: 3
Example 2:
sort_payers('Player 1: +str(player1points)\n'
'\n'
'Player 2: +str(player2points)\n'
'\n'
'Player 3: +str(player3points)\n')
Will give me
AttributeError:'NoneType' object has no attribute 'group'