All mutable types are only initalized once when it is created.
Python set is hash table (that enables order 1 look-up) so it is faster than list.
import traceback traceback.print_exc() str = traceback.format_exc()
电压和电流测量结果的顺序调整。
# 注意list的sort方法是直接修改对象本身的,所以要先改电压,再改电流
# 1. old method
u_data.sort(key=dict(zip(u_data, i_data)).get)
# 2. new method
u_data = [el for _, el in sorted(zip(i_data, u_data), key=lambda pair: pair[0])]
# 3. new method shortest
u_data = [el for _, el in sorted(zip(i_data, u_data))]
i_data.sort()
# 倒序,负电流在前。
x = i_data = i_data[::-1]
y = u_data = u_data[::-1]
double underscore?
Yes, "dunder" is "double under" and refers to either methods or variables like __len__, or __my_var.