Python Please
Define a class that will represent soccer players as objects. A
soccer player will have as attributes, name, age, gender, team
name, play position on the field, total career goals scored. The
class should have the following methods:
1. initializer method that will values of data attributes
arguments. Use 0 as default for career goals scored.
2. str method to return all data attributes as combined string
object.
3. addToGoals that will accept an argument of int and...