SymPy
이렇게 미지수가 하나인 경우 var는 생략 가능? 아님 Symbol을 명시적으로 지정했으므로 생략 가능? chk sympy symbol solve
( https://thebook.io/080246/0014/ )
from sympy import Symbol, solve x = Symbol('x') equation = 2 * x - 6 print(solve(equation))하면 결과가 bracket 안에 이렇게
[3]
으로 나온다. Non-interactive mode에선 print()를 쓰지 않으면 결과가 출력되지 않는다.( https://thebook.io/080246/0014/ )
연립방정식은? solve()에 equation을 tuple로, dict=True 옵션을 준다. https://thebook.io/080246/0019/
ADDHERE