My idea was to implement the following class:
class name(object, name): def __init__(self, name): print nameThen the idea was to create two instances of that class:
person1 = name("jean")person2 = name("dean")I know that is not possible, but how can I pass an input argument into an instance of a class?