I am using python 3.4
class baba():
def __init__(self,a,b,c,d,e,f,g):
self.a = a
self.b = b
self.c = c
self.d = d
self.e = e
self.f = f
self.g = g
IS there a shorter way to write this? Beside getting all of those as a dict
You can use
**kwargs
, then usesetattr
to create your instance attributes: