我是靠谱客的博主 爱笑信封,最近开发中收集的这篇文章主要介绍python学习笔记-12. python常用标准库python学习笔记-12. python常用标准库前言一、os模块二、time模块三、urllib库四、math库总结,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

python学习笔记-12. python常用标准库


文章目录

  • python学习笔记-12. python常用标准库
  • 前言
  • 一、os模块
  • 二、time模块
  • 三、urllib库
  • 四、math库
  • 总结


前言

python常见的标准库包含系统相关的os库,时间和日期相关的time和datetime,计算相关的math,网络请求相关urllib


一、os模块

os模块主要针对文件、目录的操作
常用的方法包括:

  • os.mkdir():创建目录
  • os.removedirs():删除文件
  • os.getcwd():获取当前目录
  • os.path.exists(dir or file): 判断文件或目录是否存在
import os
# mkdir()方法创建一个目录,创建的目录在项目的根目录下
os.mkdir("testdir")

# listdir()当前文件下的文件和目录列表
print(os.listdir("./"))

# removedirs()删除文件夹
os.removedirs("testdir")

# getcwd()获取当前的绝对路径
print(os.getcwd())

# path.exists() 判断文件或文件夹是否存在,不存在则创建文件夹
if not os.path.exists("testdir"):
	os.mkdir("testdir")
# 判断文件是否存在,不存在则创建文件
if not os.path.exists("testdir/test.txt"):
	f = open("testdir/test.txt", "w")
	f.write("this is a test message")
	f.close()

# 也可以判断是否存在,存在删除创建,不存在创建
if os.path.exists("testdir"):
	os.removedirs("testdir")
	os.mkdir("testdir")
else:
	os.mkdir("testdir")
	

二、time模块

主要用于获取当前时间以及时间格式

常用方法:

  • time.asctime(): 国外的时间格式
  • time.time(): 时间戳
  • time.sleep(): 等待
  • time.localtime(): 时间戳转成时间元组
  • time.strftime(): 将当前的时间戳转成带格式的时间
import time

print(time.asctime())
print(time.time())

# localtime()默认获取当前时间的元组,参数为时间戳,填入时间戳可以获取时间戳对应的时间元组
print(time.localtime())

# strftime() 方法第一个参数为格式,第二个参数为时间的元组,可以通过time.localtime()获取
print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
print(time.strftime("%Y年%m月%d日 %H:%M:%S", time.localtime()))

# 获取过去的时间
now_timestamp = time.time()
two_day_before = now_timestamp - 60*60*24*2
time_tuple = time.localtime(two_day_before)
print(time.strftime("%Y年%m月%d日 %H:%M:%S", time_tuple))

# 获取1天后的时间
now_timestamp1 = time.time()
one_day_after = now_timestamp1 + 60*60*24
time_tuple1 = time.localtime(one_day_after)
print(time.strftime("%Y年%m月%d日 %H:%M:%S", time_tuple1))

三、urllib库

python2使用import urllib2,python3使用import urllib.request,主要用于网络请求处理,不过建议使用Requests包也是官方的简历

import urllib.request

response = urllib.request.urlopen('http://www.baidu.com')
print(response.status)
print(response.read())
print(response.headers)

四、math库

math库常用于计算使用
常用方法:

  • math.ceil(x): 返回大雨等于参数x的最小整数
  • math.floor(x): 返回小于等于参数x的最大整数
  • math.sqrt(x): 平方根
import math
# 开平方
print(math.sqrt(4))
print(math.ceil(5.6))
print(math.floor(4.1))


总结

os主要操作文件及目录
time主要对时间进行获取、格式化
urllib简单了解,后续主要学习Request
math主要用于数学计算

最后

以上就是爱笑信封为你收集整理的python学习笔记-12. python常用标准库python学习笔记-12. python常用标准库前言一、os模块二、time模块三、urllib库四、math库总结的全部内容,希望文章能够帮你解决python学习笔记-12. python常用标准库python学习笔记-12. python常用标准库前言一、os模块二、time模块三、urllib库四、math库总结所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部