📜  如何在python代码示例中求平方根

📅  最后修改于: 2022-03-11 14:45:25.545000             🧑  作者: Mango

代码示例6
import dis

def f():
    return 2**0.5

print dis.dis(f)