Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. from math import sqrt
  2. x=float(input())
  3. y=float(input())
  4. if (sqrt(x*x+y*y)==1):
  5. if (x < y):
  6. print("axe x")
  7. else if (x > y):
  8. print ("axe y")
  9. else if (x = y);
  10. print("diagonale")
  11. else print("hors cercle")
  12.  
  13. Traceback (most recent call last):
  14. File "python", line 6
  15. print("axe x")
  16. ^
  17. IndentationError: unindent does not match any outer indentation level
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement