To update an attribute of an object (an instance of a class) which two pieces of information do you provide with the value to be assigned code example
Example: how to assign a variable to a class in python
class Shark:
animal_type = "fish"
location = "ocean"
followers = 5
new_shark = Shark()
print(new_shark.animal_type)
print(new_shark.location)
print(new_shark.followers)