11 lines
185 B
Python
11 lines
185 B
Python
|
from ItemRelate import main as relate
|
||
|
import json
|
||
|
|
||
|
with open("TestFile/adhd.json") as json_file:
|
||
|
scale = json.load(json_file)
|
||
|
|
||
|
que=relate(scale)
|
||
|
|
||
|
for i in que:
|
||
|
print(i.a, i.b, i.sim)
|