六、python库的使用

一、库的介绍

Python计算生态=标准库+第三方库:

(1)标准库:随解释器直接安装到操作系统的功能模块

(2)第三方库:需要经过安装才能使用的功能模块

(3)模块:库Library,包Package,模块Module

二、库引用import

(1)使用方法一:

import <库名>
#引入xxx库

<库名>.<函数名>(<相关参数>)
#调用xxx库中的xxx方法
import <库>.<子库>
#例子:import matplotlib.pyplot

(2)使用方法二:

from简写(一是这样写运行效率更高,二是调用时就不用写库名了,直接写函数名):

具体方法:

from <库名> import <函数名>

或

from <库名> import *
from <库> import <子库>
#例:from matplotlib import pyplot

PS:可能会出现函数重名

from random import random
def random():
    return 666
a=random()
print(a)
#666

(3)使用方法三:库别名(写得更省力)as

import <库名> as <库别名>
#引入

<库别名>.<函数名>(<函数参数>)
#调用
#例子
import random as r
a=r.random()
print(a)
#0.963946535972819
from <库> import <子库> as <子库别名>
#例子:from matplotlib import pyplot as plt

总结:

import xxx as xxx主要是用来起别名的,简写库名。如import numpy as np

from xxx import xxx (as xxx)主要是用到子库的情况,不想写嵌套的库的情况。如from matplotlib import pyplot,使用的时候就是pyplot xxx函数

 from xxx import xxx 引入模块中的类、函数或者变量,Import只能引入整体模块(单独引入模块中的类、函数或者变量会报错)

三、标准库

random随机数https://blog.csdn.net/sandalphon4869/article/details/88559175
turtle图形https://blog.csdn.net/sandalphon4869/article/details/88568757

四、第三方库

1.安装(Windows下):

(1)在cmd命令行输入

pip install xxx

(2)需要联网下载

2.显示库的信息

pip show numpy

第三方库索引

numpyndarray数组

https://blog.csdn.net/sandalphon4869/article/details/88691915

https://blog.csdn.net/sandalphon4869/article/details/88745924

matplotlib绘图https://blog.csdn.net/sandalphon4869/article/details/88584798

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Python is an extensible, interpreted, object-oriented programming language. It supports a wide range of applica- tions, from simple text processing scripts to interactive Web browsers. Python 是一种可扩展的, 即译式, 面向对象规格的编程语言. 它能应用在极广泛的地方, 从简单的文字处理 工作到交互式的网页浏览器. While the Python Reference Manual describes the exact syntax and semantics of the language, it does not describe the standard library that is distributed with the language, and which greatly enhances its immediate usability. This library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as well as modules written in Python that provide standardized solutions for many problems that occur in everyday programming. Some of these modules are explicitly designed to encourage and enhance the portability of Python programs. Python 语言参考手册 中精确地描述了Python 语言的句法及语义. 然而语言参考手册中没有提到Python 所 附带功能强大的标准. 这个函式大大地增强了Python 的实用性. 其中包括C 写的内建模组, 提供介面 让程式进行操作系统层次的工作, 例如档案的输出输入; 同时也有以Python 语言本身编写的模组, 为实际 编程时常遇的问题提供标准解决方案. 这类模组有的经过特别设计以便Python 程式在跨平台的情况下运 行无误. This library reference manual documents Python’s standard library, as well as many optional library modules (which may or may not be available, depending on whether the underlying platform supports them and on the configuration choices made at compile time). It also documents the standard types of the language and its built-in functions and exceptions, many of which are not or incompletely documented in the Reference Manual. 本参考手册罗列并说明了Python 标准的各种功能, 以及许多非核心的模组(按不同的操作系统和编译时 的设置而定, 不是每台机上的Python 都能用这些模组.) 本手册同时记载了Python 语言所有的标准数据类 型, 内建函数, 异常类, 这些在参考手册中被忽略了或只是扼要的提过一下. This manual assumes basic knowledge about the Python language. For an informal introduction to Python, see the Python Tutorial; the Python Reference Manual remains the highest authority on syntactic and semantic questions. Finally, the manual entitled Extending and Embedding the Python Interpreter describes how to add new extensions to Python and how to embed it in other applications. 本手册的读者要对Python 有基本的认识. 初学者应该从Python 指南 开始. 至于Python 语言参考手册 则是该语言的语法和语义问题上的权威阐释. 最后 扩展或嵌入 Python 解释器 一文解说了如何在Python 中加入新的扩展模组; 以及怎样把Python 解释器嵌入到其他的应用程式中.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值