Spaces:
Runtime error
Runtime error
Update consult_func.py
Browse files- consult_func.py +20 -4
consult_func.py
CHANGED
@@ -31,7 +31,7 @@ def advice1(radio1, radio2, radio3):
|
|
31 |
return importance + current
|
32 |
|
33 |
else:
|
34 |
-
if
|
35 |
current = """从交流中,我们得知你的睡眠时间不足,但是并没有失眠或早醒的问题。每个人有着自己不同的生活习惯,\
|
36 |
如果当前的睡眠时长能让你在第二天的学习和工作中保持较为良好的状态,那么则不用太过担心。但如果睡眠时间不足导致你在白天中出现过度疲惫、\
|
37 |
头晕等等不良情况,我们建议你适当调整自己的睡眠作息,适当提早入睡时间,或者适当延后起床时间都是可以的。当然,\
|
@@ -39,7 +39,7 @@ def advice1(radio1, radio2, radio3):
|
|
39 |
"""
|
40 |
return importance + current
|
41 |
|
42 |
-
elif
|
43 |
current = """从交流中,我们得知你存在一定程度上的失眠问题。失眠或许可能对你的身体和心理造成一定程度上的负面影响,\
|
44 |
但请不要因此而焦虑,这是很常见的现象,可能与神经衰弱、睡眠浅有关,这也当然不是你的过错。如果你有比较轻微的失眠问题,\
|
45 |
我们建议你可以主动积极地做出一些改变,比如积极和舍友沟通好作息时间,购买窗帘、耳塞,以及避免在睡前饮食、输入咖啡因等等,\
|
@@ -410,9 +410,25 @@ def save2(username,password,radio1,radio2,radio3,radio4,radio5,radio6,result1,te
|
|
410 |
#从作答项目获取存储内容
|
411 |
def get_info(radio1,radio2,radio3,radio4,radio5,radio6,result1,text1,radio8,radio9,radio10,result2,text2,result3,text3,adv,):
|
412 |
#radio1,radio2,radio3睡眠情况
|
413 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
#radio4食欲情况
|
415 |
-
|
|
|
|
|
|
|
|
|
|
|
416 |
#radio5,radio6心情情况
|
417 |
|
418 |
#回答的分数与内容
|
|
|
31 |
return importance + current
|
32 |
|
33 |
else:
|
34 |
+
if radio3 == "不存在":
|
35 |
current = """从交流中,我们得知你的睡眠时间不足,但是并没有失眠或早醒的问题。每个人有着自己不同的生活习惯,\
|
36 |
如果当前的睡眠时长能让你在第二天的学习和工作中保持较为良好的状态,那么则不用太过担心。但如果睡眠时间不足导致你在白天中出现过度疲惫、\
|
37 |
头晕等等不良情况,我们建议你适当调整自己的睡眠作息,适当提早入睡时间,或者适当延后起床时间都是可以的。当然,\
|
|
|
39 |
"""
|
40 |
return importance + current
|
41 |
|
42 |
+
elif radio3 == "失眠":
|
43 |
current = """从交流中,我们得知你存在一定程度上的失眠问题。失眠或许可能对你的身体和心理造成一定程度上的负面影响,\
|
44 |
但请不要因此而焦虑,这是很常见的现象,可能与神经衰弱、睡眠浅有关,这也当然不是你的过错。如果你有比较轻微的失眠问题,\
|
45 |
我们建议你可以主动积极地做出一些改变,比如积极和舍友沟通好作息时间,购买窗帘、耳塞,以及避免在睡前饮食、输入咖啡因等等,\
|
|
|
410 |
#从作答项目获取存储内容
|
411 |
def get_info(radio1,radio2,radio3,radio4,radio5,radio6,result1,text1,radio8,radio9,radio10,result2,text2,result3,text3,adv,):
|
412 |
#radio1,radio2,radio3睡眠情况
|
413 |
+
if radio1==0:
|
414 |
+
if radio2=="存在"
|
415 |
+
sleep="睡眠充足,存在嗜睡情况"
|
416 |
+
else:
|
417 |
+
sleep="睡眠充足,不存在嗜睡情况"
|
418 |
+
else:
|
419 |
+
if radio3=="不存在":
|
420 |
+
sleep="睡眠不足,不存在失眠或早醒情况"
|
421 |
+
elif radio3=="失眠":
|
422 |
+
sleep="睡眠不足,存在失眠情况"
|
423 |
+
else:
|
424 |
+
sleep="睡眠不足,存在早醒情况"
|
425 |
#radio4食欲情况
|
426 |
+
if radio4==0:
|
427 |
+
eat="食欲正常,体重无明显变化"
|
428 |
+
elif radio4==1:
|
429 |
+
eat="食欲亢进,体重增加"
|
430 |
+
else:
|
431 |
+
eat="食欲不振,体重减轻"
|
432 |
#radio5,radio6心情情况
|
433 |
|
434 |
#回答的分数与内容
|