fork download
  1. a=3
  2. b=4
  3. import math
  4. c=math.sgrt(a**2+b**2)
  5. line="math.sgrt(a**2+b**2)=%d"%c
  6. print(line )
Runtime error #stdin #stdout #stderr 0.01s 28384KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 4, in <module>
AttributeError: module 'math' has no attribute 'sgrt'