Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

IDrawingUpdate.java

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}