If I had a class with a function like the following and I wanted to have two variables that had default values:
class item:
def __init__(self, var1=1, var2=2)
self.var1 = var1
self.var2 = var2
How could I create an instance of this class and change var2's value but not var1's?
a = item(#Leave var1 alone, but set var2 to 'hello')