Skip to content
Snippets Groups Projects
Select Git revision
  • d78a8ccadac76d9dc22ebf240d6b64408cca9259
  • master default protected
2 results

utilis.py

Blame
  • utilis.py 220 B
    file = open("workfile","r")
    print(file.readline())
    
    
    # regular expression
    
    
    def read():
    
    
        map = {'N':100, 'M':2}
    
        return map
    
    
    
    def combine_dict(dict1, dict2):
        return {k: (dict1[k] + dict2[k]) for k in dict1}