I don't think it does. The Python functions bin, oct, int, and hex will help you if you only care about converting to base 2, 8, 10, or 16 (resp.).
Apparently there is a function in gmpy which does this for arbitrary base, called digits. See also http://stackoverflow.com/a/2267446/161801. Aaron Meurer On Fri, Nov 1, 2013 at 2:06 PM, Christophe Bal <[email protected]> wrote: > Hello, > is there a function in Sympy to convert an integer given in some B-base > writing to another b-base writing ? > > Christophe > > -- > 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. > For more options, visit https://groups.google.com/groups/opt_out. -- 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. For more options, visit https://groups.google.com/groups/opt_out.
