Advertisement
JoelSjogren

Untitled

Nov 24th, 2020
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. from sympy import *
  2. var('x')
  3. y = x*x
  4. print(solve(y-1, x))
  5.  
  6. """
  7. >>>
  8. box% python -i main.py
  9. [-1, 1]
  10. >>>
  11. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement