Initial commit
This commit is contained in:
commit
2afa8027d8
6 changed files with 289 additions and 0 deletions
10
test.py
Normal file
10
test.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
valuesFile = 'output'
|
||||
values = {}
|
||||
|
||||
with open(valuesFile,"r") as f:
|
||||
for line in f:
|
||||
splitted = line.split('=')
|
||||
if len(splitted) == 2:
|
||||
values[splitted[0].strip()] = splitted[1].strip()
|
||||
|
||||
print(values)
|
||||
Loading…
Add table
Add a link
Reference in a new issue