Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

SciPy 入门


SciPy 的安装

如果你已经在系统上安装了 PythonPIP,那么安装 SciPy 就非常简单了。

使用以下命令安装它

C:\Users\你的用户名>pip install scipy

如果此命令失败,则使用已安装 SciPy 的 Python 发行版,例如 Anaconda、Spyder 等。


导入 SciPy

安装 SciPy 后,通过添加 from scipy import 模块 语句来导入应用程序中要使用的 SciPy 模块。

from scipy import constants

现在我们已经从 SciPy 导入了 constants 模块,应用程序已准备好使用它。

示例

一升有多少立方米?

from scipy import constants

print(constants.liter)
自己试试 »

constants: SciPy 提供了一组数学常量,其中之一是 liter,它将 1 升返回为立方米。

您将在下一章中了解更多关于常量的信息。


检查 SciPy 版本

版本字符串存储在 __version__ 属性下。

示例

import scipy

print(scipy.__version__)
自己试试 »

注意: __version__ 中使用了两个下划线。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.