| lora-sp | 6697864 | 2023-03-08 11:02:52 +0100 | [diff] [blame^] | 1 | import os |
| 2 | import xml.etree.ElementTree as ET | ||||
| 3 | |||||
| 4 | path = 'home/spassova/BGCorpusExamples' | ||||
| 5 | files = os.listdir(path) | ||||
| 6 | |||||
| 7 | tree = ET.parse(path + '/' + files[0]) | ||||
| 8 | root = tree.getroot() | ||||
| 9 | |||||
| 10 | |||||
| 11 | |||||