A computer algebra system written in pure Python http://sympy.org/ . To get started to with contributing https://github.com/sympy/sympy/wiki/Introduction-to-contributing
I found some unusual behaviour in randprime and I try to fix it.
from sympy import randprime
print(randprime(-2,0))
ValueError: no preceding primes
Can someone please review this PR : #20949
class Data:
def __init__(self, string,symbol, value):
self.string = string
self.symbol = sm.Symbol(symbol)
self.value = value
def __add__(self, other):
return self.value + other.value if isinstance(other, Data) else other
def __str__(self):
return self.string
def _repr_latex_(self):
return display(Latex(' '.join([self.string, f'({self.symbol})' ,r'\equals', self.value] )))
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
c:\users\dell\onedrive\desktop\courses sem8\venv\lib\site-packages\IPython\core\formatters.py in __call__(self, obj)
343 method = get_real_method(obj, self.print_method)
344 if method is not None:
--> 345 return method()
346 return None
347 else:
<ipython-input-49-83e3f780e89d> in _repr_latex_(self)
11 return self.string
12 def _repr_latex_(self):
---> 13 return display(Latex(' '.join([self.string, f'({self.symbol})' ,r'\equals', self.value] )))
14 # area_each_plate = Data("Area of each plate", 15.8*15.8*SI.cm**2)
15 # inlet_pressure = Data("Area of each plate", 15.8*15.8*SI.cm**2)
TypeError: sequence item 3: expected str instance, Quantity found
self.value
. join
requires that every item is converted to a string, so use latex(self.value)
.
_repr_latex
should return a string, not call display().