mirror of https://github.com/injetlee/Python.git
Would appreciate if the docs were in English.
parent
e9ba0df874
commit
889a956785
|
@ -3,8 +3,7 @@ def count_pm(*args):
|
||||||
alist = list([round(i*2-8,2) for i in args]) #计算三种颗粒浓度
|
alist = list([round(i*2-8,2) for i in args]) #计算三种颗粒浓度
|
||||||
result = []
|
result = []
|
||||||
for pm in alist:
|
for pm in alist:
|
||||||
pm_abs = abs(pm)
|
result.append(generate_iso_code(abs(pm)))
|
||||||
result.append(generate_iso_code(pm_abs))
|
|
||||||
print (result)
|
print (result)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue