python3有哪些内置模块(Python3.5内置模块之os模块、sys模块、shutil模块用法实例分析)
python3有哪些内置模块
Python3.5内置模块之os模块、sys模块、shutil模块用法实例分析本文实例讲述了python3.5内置模块之os模块、sys模块、shutil模块用法。分享给大家供大家参考,具体如下:
1、os模块:提供对操作系统进行调用的接口
|
#!/usr/bin/env python # -*- coding:utf-8 -*- # author:zhengzhengliu import os print (os.getcwd()) #获取当前的操作目录,即当前python脚本工作的目录路径 #os.chdir("f:\\pythoncode\\day5\\test") #改变当前脚本工作目录,相当于shell下的cd os.chdir(r "f:\pythoncode\day5\test" ) #与上面一句等价(推荐使用) print (os.getcwd()) print (os.curdir) #返回当前目录 '.' print (os.pardir) #获取当前目录的父目录字符串名 '..' os.makedirs(r "f:\a\b\c" ) #生成多层递归目录 #若目录为空,则删除,并递归到上一级目录,如若也为空,则删除,依此类推 os.removedirs(r "f:\a\b\c" ) #清理空文件夹 os.mkdir(r "f:\pythoncode\day5\t" ) #生成单级目录,相当于shell中mkdir filename os.rmdir(r "f:\pythoncode\day5\t" ) #删除单级空目录,若目录不为空,无法删除或报错;相当于shell中rmdir filename print (os.listdir(r "f:\pythoncode\day5\test" )) #列出指定目录下的所有文件和子目录,包括隐藏文件,并以列表方式打印 os.remove(r "f:\pythoncode\day5\test\1.py" ) #删除一个文件 os.rename(r "f:\pythoncode\day5\test\1.py" ,r "f:\pythoncode\day5\test\2.py" ) #重命名文件/目录 print (os.stat(r "f:\pythoncode\day5\test" )) #获取文件/目录信息 print (os.sep) #输出操作系统特定的路径分隔符,win下为"\\",linux下为"/" print (os.linesep) #输出当前平台使用的行终止符,win下为"\r\n",linux下为"\n" print (os.pathsep) #输出用于分割文件路径的字符串,win下为";",linux下为":" print (os.environ) #查看系统的环境变量 print (os.name) #输出字符串指示当前使用平台。win->'nt'; linux->'posix' print (os.system( "dir" )) #运行shell命令,直接显示 print (os.path.abspath(r "f:\pythoncode\day5" )) #返回path规范化的绝对路径 print (os.path.split(r "f:\pythoncode\day5\test\1.py" )) #将path分割成目录和文件名二元组返回 print (os.path.dirname(r "f:\pythoncode\day5" )) #返回path的目录。其实就是os.path.split(path)的第一个元素 print (os.path.basename(r "f:\pythoncode\day5" )) #返回path最后的文件名。如何path以/或\结尾,那么就会返回空值。 print (os.path.exists(r "f:\pythoncode\day5" )) #如果path存在,返回true;如果path不存在,返回false print (os.path.isabs(r "f:\pythoncode\day5" )) #如果path是绝对路径,返回true print (os.path.isfile(r "f:\pythoncode\day5\p_test.py" )) #如果path是一个存在的文件,返回true,否则返回false print (os.path.isdir(r "f:\pythoncode\day5" )) #如果path是一个存在的目录,则返回true。否则返回false print (os.path.join(r "f:" ,r "\pythoncode" ,r "\day5" ,r "\day" )) #将多个路径组合后返回,第一个绝对路径之前的参数将被忽略 print (os.path.getatime(r "f:\pythoncode\day5" )) #返回path所指向的文件或者目录的最后存取时间 print (os.path.getmtime(r "f:\pythoncode\day5" )) #返回path所指向的文件或者目录的最后修改时间 |
运行结果:
|
f:\pythoncode\day5 f:\pythoncode\day5\test . .. [ '2.py' , 'module_test.py' , 'test.py' ] os.stat_result(st_mode = 16895 , st_ino = 8162774324625191 , st_dev = 104211 , st_nlink = 1 , st_uid = 0 , st_gid = 0 , st_size = 4096 , st_atime = 1506609480 , st_mtime = 1506609480 , st_ctime = 1506579769 ) \ ; environ({ 'processor_level' : '6' , 'windows_tracing_logfile' : 'c:\\bvtbin\\tests\\installpackage\\csilogfile.log' , 'processor_architecture' : 'x86' ) nt ������ f �еľ��� ѧϰ�� ������к��� 0001 - 9713 f:\pythoncode\day5\test ��Ŀ¼ 2017 / 09 / 28 22 : 38 < dir > . 2017 / 09 / 28 22 : 38 < dir > .. 2017 / 09 / 28 22 : 37 69 2.py 2017 / 09 / 28 14 : 31 121 module_test.py 2017 / 09 / 28 14 : 35 237 test.py 3 ���ļ� 427 �ֽ� 2 ��Ŀ¼ 14 , 051 , 733 , 504 �����ֽ� 0 f:\pythoncode\day5 ( 'f:\\pythoncode\\day5\\test' , '1.py' ) f:\pythoncode day5 true true true true f:\day 1506656912.210523 1506656912.210523 |
2、sys模块
|
#!/usr/bin/env python # -*- coding:utf-8 -*- # author:zhengzhengliu import sys print (sys.argv) #命令行参数list,第一个元素是程序本身路径 print (sys.version) #获取python解释程序的版本信息 print (sys.path) #返回模块的搜索路径,初始化时使用pythonpath环境变量的值 print (sys.platform) #返回操作系统平台名称 sys.stdout.write( 'please:' ) #标准输出,写入字符串输出到屏幕 val = sys.stdin.readline()[: - 1 ] #标准输入 print (val) sys.exit( 0 ) #退出程序,正常退出时exit(0) |
运行结果:
|
[ 'f:/pythoncode/day5/sys_module.py' ] 3.5 . 2 |anaconda 4.2 . 0 ( 32 - bit)| (default, jul 5 2016 , 11 : 45 : 57 ) [msc v. 1900 32 bit (intel)] [ 'f:\\pythoncode\\day5' , 'f:\\pythoncode' , 'c:\\users\\administrator\\anaconda3\\python35.zip' , 'c:\\users\\administrator\\anaconda3\\dlls' , 'c:\\users\\administrator\\anaconda3\\lib' , 'c:\\users\\administrator\\anaconda3' , 'c:\\users\\administrator\\anaconda3\\lib\\site-packages' , 'c:\\users\\administrator\\anaconda3\\lib\\site-packages\\sphinx-1.4.6-py3.5.egg' , 'c:\\users\\administrator\\anaconda3\\lib\\site-packages\\win32' , 'c:\\users\\administrator\\anaconda3\\lib\\site-packages\\win32\\lib' , 'c:\\users\\administrator\\anaconda3\\lib\\site-packages\\pythonwin' , 'c:\\users\\administrator\\anaconda3\\lib\\site-packages\\setuptools-27.2.0-py3.5.egg' ] win32 hello please:hello |
3、shutil模块:高级的文件、文件夹、压缩包处理模块
(1)将文件内容拷贝到另一个文件中,可以部分内容——shutil.copyfileobj(fsrc, fdst[, length])
|
f1 = open ( "p_test.py" ,encoding = "utf-8" ) f2 = open ( "p1.py" , "w" ,encoding = "utf-8" ) #将文件p_test.py内容拷贝到另一个文件p1.py中,可以部分内容 shutil.copyfileobj(f1,f2) |
运行结果:
(2)拷贝文件——shutil.copyfile(src, dst)
|
import shutil shutil.copyfile( "p1.py" , "p2.py" ) #拷贝文件 |
运行结果:
(3)仅拷贝权限(内容、组、用户均不变)——shutil.copymode(src, dst)
(4)拷贝状态的信息,包括:mode bits, atime, mtime, flags——shutil.copystat(src, dst)
(5)拷贝文件和权限——shutil.copy(src, dst)
(6)拷贝文件和状态信息——shutil.copy2(src, dst)
(7)递归的去拷贝文件:
|
shutil.ignore_patterns( * patterns) shutil.copytree(src, dst, symlinks = false, ignore = none) |
|
import shutil shutil.copytree( "test" , "test1" ) #递归的去拷贝文件 |
运行结果:
(8)递归的去删除文件——shutil.rmtree(path[, ignore_errors[, onerror]])
(9)递归的去移动文件——shutil.move(src, dst)
(10)创建压缩包并返回文件路径,例如:zip、tar——shutil.make_archive(base_name, format,...)
-
base_name: 压缩包的文件名,也可以是压缩包的路径。只是文件名时,则保存至当前目录,否则保存至指定路径,
如:www =>保存至当前路径
如:/users/wupeiqi/www =>保存至/users/wupeiqi/ - format: 压缩包种类,“zip”, “tar”, “bztar”,“gztar”
- root_dir: 要压缩的文件夹路径(默认当前目录)
- owner: 用户,默认当前用户
- group: 组,默认当前组
- logger: 用于记录日志,通常是logging.logger对象
|
import shutil shutil.make_archive( "shutil_archive_test" , "zip" , "f:\pythoncode\day5" ) |
运行结果:
总结:shutil 对压缩包的处理是调用 zipfile 和 tarfile 两个模块来进行的
|
import zipfile z = zipfile.zipfile( "day5.zip" , "w" ) z.write( "p1.py" ) print ( "===========" ) z.write( "p2.py" ) z.close() |
运行结果:
|
= = = = = = = = = = = |
希望本文所述对大家python程序设计有所帮助。
原文链接:https://blog.csdn.net/loveliuzz/article/details/78128080
- python统计出现文字最多的词(使用Python 统计高频字数的方法)
- pythonflask系列教程(Python安装Flask环境及简单应用示例)
- pythonselenium判断网页加载完成(python 实现selenium断言和验证的方法)
- 用python编写一个gui(用 Python 构建漂亮的 GUI)
- python微信消息模拟请求(python实现微信机器人: 登录微信、消息接收、自动回复功能)
- python怎么去掉字符串的空格(Python切片操作去除字符串首尾的空格)
- 最简单python的100个代码(20条非常实用的Python代码实例)
- python递归深度遍历多叉树(Python实现二叉树的常见遍历操作总结7种方法)
- python取当前日期(Python实现根据日期获取当天凌晨时间戳的方法示例)
- python转pdf教程(Python实现将HTML转成PDF的方法分析)
- python中lambda教程(浅析python的Lambda表达式)
- 微信公众号文章 爬虫(python抓取搜狗微信公众号文章)
- python设置微信(利用python实现在微信群刷屏的方法)
- python计算csv的行数(对Python 多线程统计所有csv文件的行数方法详解)
- python导出数据到mysql(python定时按日期备份MySQL数据并压缩)
- python字符串相似度匹配(Python实现字符串匹配的KMP算法)
- 王伦狭隘,晁盖霸道,宋江奸诈骨头软,只有鲁智深才适合当寨主(王伦狭隘晁盖霸道)
- 他是梁山最早的头目,江湖人称 旱地忽律 ,宋江几乎将其遗忘(他是梁山最早的头目)
- 梁山创始人杜迁,为何不受宋江待见,只排名83位(梁山创始人杜迁)
- 法国面包(法国面包法棍)
- 微信(微信分身)
- 双十二(双十二和双十一哪个划算)
热门推荐
- mysql删除数据库的命令(MySQL 线上数据库清理数据的方法)
- python合并多个excel可以刷新吗(python 实现读取一个excel多个sheet表并合并的方法)
- Javascript操作DOM
- 忘记mysql密码怎么登录(Mysql用户忘记密码及密码过期问题的处理方法)
- linuxnfs服务教程(使用Docker的NFS-Ganesha镜像搭建nfs服务器的详细过程)
- vue子视图里再加routerview(vue router-view的嵌套显示实现)
- python解析excel例子(Python玩转Excel的读写改实例)
- SQL Having的用法
- docker如何解绑容器(如何进入、退出docker的container实现)
- dede优化教程(DEDE调用分类及分类下文章并限制标题字数及显示条数)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9