这段代码是什么意思 if len(cure_department) == 1: rels_category.append([disease, cure_department[0]])
时间: 2023-05-30 12:05:19 浏览: 87
python-cure-implementation-master.zip_CURE python_cure_cure pyt
如果cure_department的长度为1,那么将[disease, cure_department[0]]添加到rels_category列表中。其中disease和cure_department[0]分别表示疾病和治疗科室。
阅读全文