ID photo of Ciro Santilli taken in 2013 right eyeCiro Santilli OurBigBook logoOurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
python/sympy_cheat/logarithm_integral.py
#!/usr/bin/env python3

from sympy import *

x = symbols('x')
myli = integrate(sympify(1)/ln(x), x)

# It recognizes our definition as its own li! Beauty.
assert myli.equals(li(x))

for r in range(-2, 2):
    for i in range(-2, 2):
        print(f'{r} {i} {li(r + i*I).evalf()}')

Ancestors (13)

  1. SymPy special function
  2. SymPy
  3. Computer algebra system
  4. Computer algebra
  5. Numerical software
  6. Scientific software
  7. Scientific computing
  8. Software
  9. Computer
  10. Information technology
  11. Area of technology
  12. Technology
  13. Home