Which attributes from the code below are instance attributes?
class Coffee:
roast = "medium"
kind = "beans"
def __init__(self, variety):
self.variety = variety
self.caffeine = 0Which attributes from the code below are instance attributes?
class Coffee:
roast = "medium"
kind = "beans"
def __init__(self, variety):
self.variety = variety
self.caffeine = 0Create a free account to access the full topic