10 lines
253 B
Python
10 lines
253 B
Python
|
|
def Operator(content):
|
||
|
|
op_list = []
|
||
|
|
Operation = {"散射": 0, "散烁": 0, "散车": 0, "平面波散射": 0}
|
||
|
|
for i in Operation.keys():
|
||
|
|
if i in content:
|
||
|
|
op_list.append(Operation[i])
|
||
|
|
break
|
||
|
|
return op_list
|
||
|
|
|