class Player(object):
def __init__(self):
self.points = 0
def add_points():
plyr1.points += 1
plyr2.points += 1
plyr3.points += 1
if __name__ == '__main__':
(plyr1, plyr2, plyr3 = (Player(), Player(), Player())
add_points()
How could the 3 lines in add_points() be written better/shorter?