Constants

Sat 17 May 2025

title: "Constants" author: "Raja CSP Raman" date: 2019-04-20 description: "-" type: technical_note draft: false


from scipy.constants import pi
pi
3.141592653589793
from scipy.constants import golden
golden
1.618033988749895
from scipy.constants import G
G
6.67408e-11
from scipy.constants import speed_of_light as sol
sol
299792458.0


Score: 10

Category: scipy