Scientific Python
9K posts

Scientific Python
@SciPyTip
Tweets about SciPy (Scientific Python) and related topics from @JohnDCook.
Houston شامل ہوئے Şubat 2011
18 فالونگ209.7K فالوورز

New post: Embedded regex flags
johndcook.com/blog/2026/03/2…
English

Overview of Bessel functions in SciPy johndcook.com/blog/bessel_py…
English

Scientific Python lecture notes scipy-lectures.github.io/index.html
Français

The Python optimization ladder
cemrehancavdar.com/2026/03/10/opt…
English

Probability distributions in SciPy johndcook.com/blog/2009/07/2…
English

Can read strings like files with StringIO docs.python.org/3/library/io.h… // very useful for testing
English

Why does the following code not print sqrt(x**2 - 1)?
>>> from sympy import *
>>> x = symbols('x')
>>> print( simplify(sinh(acosh(x))) )
sqrt(x - 1)*sqrt(x + 1)
There's a good reason.
johndcook.com/blog/2026/03/1…
English