You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sympy-list
Hello.
The following terminal session shows a problem with the ASCII printing because the two last lines.
At least, I would expect the use of S(1) in the repr which is a technical output from my point of view. What do you think about this ?
Christophe BAL
-----------------------
>>> from sympy import *
>>> x = var('x')
>>> f = S(1)/4
>>> print f
1/4
>>> print(repr(f))
1/4
Aaron Meurer
unread,
May 7, 2014, 6:19:02 PM5/7/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
repr is the same as str for SymPy, because the true repr output would
be too verbose, and Python calls repr on the elements of a list when
you call str on the list.