python常用标准库
Posted CSR-kkk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python常用标准库相关的知识,希望对你有一定的参考价值。
os
操作系统相关:
主要针对文件、目录的操作
常用方法:
方法 | 方法的作用 |
---|---|
os.listdir() | 列出当前目录下包含的文件和目录 |
os.mkdir() | 创建目录 |
os.removedirs() | 删除文件或目录 |
os.getcwd() | 获取当前目录 |
os.path.exists(dir or file) | 判断文件或目录是否存在 |
import os
# 如果不存在b目录,则创建b目录
if not os.path.exists("b"):
os.mkdir("b")
# 如果在b目录下不存在test.txt文件,则创建文件并写入数据
if not os.path.exists("b/test.txt"):
with open("b/test.txt","w") as f:
f.write("hello, os")
time
获取当前时间以及时间格式的模块
方法 | 方法的作用 |
---|---|
time.asctime() | 获取国外格式的时间 |
time.time() | 时间戳 |
time.sleep() | 等待 |
time.localtime() | 将 时间戳 转成 时间元组 |
time.strftime() | 将时间元组转换成带格式的时间 |
import time
time.asctime() # Thu May 13 15:27:45 2021
time.time() # 1620890865.2453315
time.localtime()
# time.struct_time(tm_year=2021, tm_mon=5, tm_mday=13, tm_hour=15, tm_min=27, tm_sec=45, tm_wday=3, tm_yday=133, tm_isdst=0)
time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) # 2021-05-13 15:27:45
time.localtime() 中可传入设定时间的时间戳 从而生成该时间的 时间元组
'''求当前时间的三天前的时间,以yyyy-MM-dd HH:mm:ss格式输出'''
import time
now_timestamp = time.time()
threeDayAge_timestamp = now_timestamp - 3 * 24 * 60 * 60
time_tuple = time.localtime(threeDayAge_timestamp)
print(time.strftime("%Y-%m-%d %H:%M:%S", time_tuple))
urllib
python 2
- import urllib2
- response = urllib2.urlopen(“http://www.baidu.com”)
python 3
- import urllib.request
- response = urllib.request.urlopen(‘http://www.baidu.com’)
print(response.status)
print(response.read())
print(response.headers)
math
math.ceil(x) 返回大于等于参数x的最小整数
math.floor(x) 返回小于等于参数x的最大整数
math.sqrt(x) 平方根
import math
print(math.ceil(5.3))
print(math.floor(5.6))
print(math.sqrt(49))
'''
6
5
7.0
'''
以上是关于python常用标准库的主要内容,如果未能解决你的问题,请参考以下文章