![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/python3.6/dist-packages/sympy/printing/ |
Upload File : |
"""Printing subsystem""" from .pretty import pager_print, pretty, pretty_print, pprint, pprint_use_unicode, pprint_try_use_unicode from .latex import latex, print_latex, multiline_latex from .mathml import mathml, print_mathml from .python import python, print_python from .pycode import pycode from .codeprinter import print_ccode, print_fcode from .codeprinter import ccode, fcode, cxxcode # noqa:F811 from .glsl import glsl_code, print_glsl from .rcode import rcode, print_rcode from .jscode import jscode, print_jscode from .julia import julia_code from .mathematica import mathematica_code from .octave import octave_code from .rust import rust_code from .gtk import print_gtk from .preview import preview from .repr import srepr from .tree import print_tree from .str import StrPrinter, sstr, sstrrepr from .tableform import TableForm from .dot import dotprint from .maple import maple_code, print_maple_code __all__ = [ # sympy.printing.pretty 'pager_print', 'pretty', 'pretty_print', 'pprint', 'pprint_use_unicode', 'pprint_try_use_unicode', # sympy.printing.latex 'latex', 'print_latex', 'multiline_latex', # sympy.printing.mathml 'mathml', 'print_mathml', # sympy.printing.python 'python', 'print_python', # sympy.printing.pycode 'pycode', # sympy.printing.codeprinter 'ccode', 'print_ccode', 'cxxcode', 'fcode', 'print_fcode', # sympy.printing.glsl 'glsl_code', 'print_glsl', # sympy.printing.rcode 'rcode', 'print_rcode', # sympy.printing.jscode 'jscode', 'print_jscode', # sympy.printing.julia 'julia_code', # sympy.printing.mathematica 'mathematica_code', # sympy.printing.octave 'octave_code', # sympy.printing.rust 'rust_code', # sympy.printing.gtk 'print_gtk', # sympy.printing.preview 'preview', # sympy.printing.repr 'srepr', # sympy.printing.tree 'print_tree', # sympy.printing.str 'StrPrinter', 'sstr', 'sstrrepr', # sympy.printing.tableform 'TableForm', # sympy.printing.dot 'dotprint', # sympy.printing.maple 'maple_code', 'print_maple_code', ]