Hi Andre, Can you post your Python code? In Python 2.x, 1/3 returns 0, while in Python 3.x, 1/3 returns 0.3333. You can also turn on the Python 3.x behavior on 2.x with a future import.
Ondrej On Tue, Feb 17, 2015 at 10:16 AM, Andre Yonadam <[email protected]> wrote: > I was writing out a Python file by hand and wasn't getting the symbolic > results only when using default operators. For example, when dividing 1/3 it > would return a decimal answer while if I used the Integral function it would > give me the right result. > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sympy. > To view this discussion on the web visit > https://groups.google.com/d/msgid/sympy/5ba37888-554a-42fd-b961-f38466a729d1%40googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CADDwiVCbBPDcGL4vFX6FN916iDagQuYNxbDsBtK9%2BztPOn3FJA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
