测试 测试标题 公式 $s=\sum_{i=0}^N a_i$ $$s=\int_0^xf(x)dx$$ code func main(){ fmt.Println("hello world") } func Foo(){ //.. } class A: def __init__(self,a,b,c,*arg): self.foo() ## def foo(self,..): #... pass class B(A): def __init__(self,a,b,c,*arg): super(a,b,c,*arg) if __name__=="__main__": print("hello world")……

阅读全文