Untitled

 avatar
Michael
python
a year ago
701 B
6
Indexable
'''
2024-7-4
計算那張圖
'''

def result(LE,LIC,LICV,LT,SV,PCV,PC):
    LA3=(PCV or SV or PC)
    print('LA3 = {}'.format(LA3))

    LA2=(LE or LIC or LT or SV)
    print('LA2 = {}'.format(LA2))

    LA1=(LE or LIC or LICV)
    print('LA1 = {}'.format(LA1))

    The_burner_continues_to_function=(LA2 and LA3)
    print('The_burner_continues_to_function = {}'.format(The_burner_continues_to_function))

    breakup_of_the_steam=(LA1 and The_burner_continues_to_function)
    print('breakup_of_the_steam = {}'.format(breakup_of_the_steam))

    return breakup_of_the_steam 


ret=result(False,True,False,False,False,False,False)
print('totla result = {}'.format(ret))


Editor is loading...
Leave a Comment