Create a class that takes the following four arguments for a particular football player:
nameageheightweightAlso, create three functions for the class that returns the following strings:
get_age() returns "name is age age"get_height() returns "name is heightcm"get_weight() returns "name weighs weightkg" p1 = player("David Jones", 25, 175, 75)
p1.get_age() ➞ "David Jones is age 25"
p1.get_height() ➞ "David Jones is 175cm"
p1.get_weight() ➞ "David Jones weighs 75kg"
name will be passed in as a string and age, height, weight will be integers.