#!/usr/bin/python # coding: utf-8 class Config: def __init__(self, test): self.test = test print self.test c = Config("test")