class Car:
def __int__(self, **kw):
self.make = kw["make"]
self.model = kw["model"]
my_car = Car(make="Nissan", model="GT-R")
print(my_car.model)
TypeError: Car() takes no arguments, even though I initialized it as a multiple keyword argument
You misspelled "init". That should fix it :)