Exemple #1
0
 def __init__(self,path, name):
     ''' Start some variables that we need to CSV file
     this is subclass from File'''
     
     File.__init__(self,path,name)
     self.delimiter = ","
Exemple #2
0
 def __init__(self,path , name):
     '''Initialize the variables'''
     File.__init__(self, path, name)
     self.file=File(path,name)
     self.display=Display()