File size: 127 Bytes
e16247a
 
 
 
 
 
1
2
3
4
5
6
a,b=1,2
c,d=3,4
#这里的指数符号使用**表示而不是^
#错误写法:e=(a-c)^2-(b-d)^2 
e=(a-c)**2-(b-d)**2 
print(e)