File size: 771 Bytes
cc9e37d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from datasets import load_dataset
import os
import re

from pathlib import Path




path = Path(__file__).parent.absolute()

with open( str(path) + os.sep + 'example.txt',encoding='utf8') as file:
  """
     # Build a dictionary with ICD-O-3 associated with 
     # healtcare problems
  """
  linesInFile = file.readlines()
 
  for index, iLine in enumerate(linesInFile): 
    print([linesInFile[index]]) if len(linesInFile[index]) > 1 else  print('**************') if linesInFile[index] == '\n' else print ('******* ERROR ********')
 

    # if re.match('^Las dilataciones bronquiales',iLine):
    #   break
   

    # code = listOfData[0]
    # description = reduce(lambda a, b: a + " "+ b, listOfData[1:2], "")
    # royalListOfCode[code.strip()] = description.strip()