Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. >>> import math
  2. def square(n):
  3. S = n**2
  4. P = n*4
  5. d = math.sqrt((n**2)*2)
  6. c = tuple(S, P, d)
  7. c
  8.  
  9. SyntaxError: multiple statements found while compiling a single statement
  10.  
  11. import math
Add Comment
Please, Sign In to add comment