【Python】python常用模块
一、模块、包
什么是模块?
模块实质上就是一个python文件,它是用来组织代码的,意思就是说把python代码写到里面,文件名就是模块的名称,test.py test就是模块名称。
什么是包?
包,package本质就是一个文件夹,和文件夹不一样的是它有一个__init__.py文件,包是从逻辑上来组织模块的,也就是说它是用来存放模块的,如果你想导入其他目录下的模块,那么这个目录必须是一个包才可以导入。
导入模块
import module #导入模块
from module import * #导入该模块中的所有方法,慎用
from module import fun as xx_fun #导入指定的方法,然后起别名
from module import fun1,fun2,fun3 #导入模块下的多个方法
import module,实际上就是把该模块的代码赋值给模块名,也就是module.py里面所有的代码,赋值给了module这个变量,如果是from module import fun,就是把module打开,把module里面的fun方法拿过来使用
导入模块的本质,就是把python文件拿过来执行一次。
使用包中的模块需要在__init__.py文件中from *** import xxx
二、OS模块
window 路径分隔符\, linux或MAC 路径分隔符 /,'\\'其中一个为转义符,r'绝对路径/文件名'里面的路径分隔符不用加转义符,r'纯文本'
import os
print(os.getcwd())#获取当前的路径
os.mkdir('wy')#当前目录下创建文件夹
os.mkdir('e:\\wangyang')#绝对路径下创建文件夹
os.makedirs('zz')#当前目录创建文件夹或按照绝对路径创建
#创建两级目录
os.mkdir('stu\\laowang')#父目录不存在会报错
os.makedirs('stu\\laowang')#父目录不存在的时候会帮你创建父目录
os.listdir(r'e:')#获取某个路径下的文件
os.listdir('.')#当前目录下的文件,返回值是list,将所有的文件放在一个list
os.rmdir('stus')#只能删除空文件夹
print(os.path.join('stu','a.txt'))#根据当前系统,拼接路径,他会自动识别路径分隔符stu\a.txt
print(os.sep)#当前系统的路径分隔符,window--\,linux\MAC--/
print(os.path.dirname('e:\\nhy\\stu\\a.txt'))#获取父目录的路径e:\nhy\stu,根据你所传参数为准,以参数作为整个路径
print(os.path.getsize('stu\\test0\\a.txt'))#获取文件的大小
print(os.path.exists('user/local'))#判断文件或者文件夹,是否存在,如果不存在返回false,如果存在返回true
print(os.path.isdir('stu'))#判断是否是文件夹,如果文件夹不存在返回false
print(os.path.isfile('stu\\test0\\a.txt'))#判断是否是文件,如果文件不存在返回false
print(os.path.split(r'.\stu\test0\a.txt'))#分割文件名与路径,结果为:('.\\stu\\test0', 'a.txt')
os.walk(r'.\logs')#返回这三个信息:目录、目录包含的文件夹列表、目录包含的文件列表
for cur,dir,f in os.walk(r'.\stu'):
print(cur,dir,f)#cur为当前目录,dir为目录包含的所有文件夹,f为目录包含的所有文件
练习:
#当前目录下,在末尾是偶数的文件夹中,创建一个a.txt文件,里面随便写点东西
dirs = os.listdir('.')
for i in dirs:
if int(i[-1])%2==0:
with open(r'.\stu\%s\a.txt'%i,'a+',encoding='utf-8') as file:
file.write('wangyang奋斗奋斗')
三、random模块
import random
print(random.random())#随机浮点数,默认取0-1,不能指定范围,eg.0.5963688623020358
print(random.randint(1,20))#随机整数
print(random.randrange(1,20))#随机产生一个range
print(random.choice('x23serw4'))#随机取一个元素
print(random.sample('hello',2))#从序列中随机取几个元素
print(random.uniform(1,9))#随机取浮点数,可以指定范围
x = [1,2,3,4,6,7]
random.shuffle(x)#洗牌,打乱顺序,会改变原list的值
print(x)
四、date、datetime模块
时间戳 从unix元年开始到现在过得秒数,格式好时间2018-07-01
print(time.time())#获取当前时间戳,
print(int(time.time()))#获取当前时间戳,整型
print(time.strftime('%Y-%m-%d %H:%M:%S'))#2018-07-01 17:03:07 Y四位年
print(time.strftime('%y-%m-%d %H:%M:%S'))#18-07-01 17:03:07 y两位年
print(int(time.time())-10*24*60*60)#追溯到10天前,返回值为时间戳
print(time.mktime(time_tuple))#时间元组转为时间戳
时间元组
print(time.gmtime())#把时间戳转为元组,如果不传时间戳,那么取得是标准时区的时间
print(time.localtime())#把时间戳转为元组,如果不传时间戳,那么取得是当前时区的时间
print(time.localtime(int(time.time())-3*24*60*60))#把时间戳转为元组,传时间戳,获取三天前的时间元组
print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(int(time.time())-3*24*60*60)))#将时间元组格式化,format为必需参数,时间元组为默认参数,默认为None
执行结果为:
时间戳:
1530871998.5078156
1530871998
2018-07-06 18:13:18
18-07-06 18:13:18
1530007998
时间元组:
time.struct_time(tm_year=2018, tm_mon=7, tm_mday=6, tm_hour=10, tm_min=13, tm_sec=18, tm_wday=4, tm_yday=187, tm_isdst=0)
time.struct_time(tm_year=2018, tm_mon=7, tm_mday=6, tm_hour=18, tm_min=13, tm_sec=18, tm_wday=4, tm_yday=187, tm_isdst=0)
time.struct_time(tm_year=2018, tm_mon=7, tm_mday=3, tm_hour=18, tm_min=13, tm_sec=18, tm_wday=1, tm_yday=184, tm_isdst=0)
2018-07-03 18:13:18
时间戳转格式化好的时间
1.首先要把时间戳转成时间元组
2.再把时间元组转成格式好的时间
def timestampToStr(timestamp=None,format='%Y-%m-%d %H:%M:%S'):
if timestamp:
time_tuple = time.localtime(timestamp) # 时间戳转成时间元组
return time.strftime(format,time_tuple) #时间元组,通过format格式转为格式化好的时间
return time.strftime(format)#如果没有传递时间元组,则默认格式化当前时间
print(timestampToStr(2234123120,'%Y%m%d'))
print(timestampToStr(format='%Y%m%d'))
结果为:20401018 20180706
格式化好的时间,转为时间戳 1.首先要把格式化好的时间,转成时间元组 2.再把时间元组转成时间戳
def strToTimestamp(format_time=None,format='%Y%m%d%H%M%S'):
if format_time:
time_tuple = time.strptime(format_time, format)#将格式化好的时间转换为时间元组,格式化好的时间格式必须和format格式一致
print(time_tuple)
return int(time.mktime(time_tuple))#将时间元组转为时间戳
return int(time.time())#获取当前时间戳整型
print(strToTimestamp('20401018054520','%Y%m%d%H%M%S'))
结果为:
time.struct_time(tm_year=2040, tm_mon=10, tm_mday=18, tm_hour=5, tm_min=45, tm_sec=20, tm_wday=3, tm_yday=292, tm_isdst=-1)
2234123120
五、string模块
import string#先引入包才能使用
print(string.ascii_letters)#打印出所有的字母大小写abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
print(string.ascii_lowercase)#打印出所有的字母小写abcdefghijklmnopqrstuvwxyz
print(string.ascii_uppercase)#打印出所有的字母大写ABCDEFGHIJKLMNOPQRSTUVWXYZ
print(string.digits)#打印出所有的数字
print(string.punctuation)#打印出所有的特殊字符
print(string.printable)#打印出全部
【Python】python常用模块的更多相关文章
- python的常用模块之collections模块
python的常用模块之collections模块 python全栈开发,模块,collections 认识模块 什么是模块? 常见的场景:一个模块就是一个包含了python定义和声明的文件,文 ...
- python之常用模块
python 常用模块 之 (subprocess模块.logging模块.re模块) python 常用模块 之 (序列化模块.XML模块.configparse模块.hashlib模块) pyth ...
- python之常用模块二(hashlib logging configparser)
摘要:hashlib ***** logging ***** configparser * 一.hashlib模块 Python的hashlib提供了常见的摘要算法,如MD5,SHA1等等. 摘要算法 ...
- Python学习——python的常用模块
模块:用一堆代码实现了某个功能的代码集合,模块是不带 .py 扩展的另外一个 Python 文件的文件名. 一.time & datetime模块 import time import dat ...
- python之常用模块4
pyinotify模块 pip3 install pyinotify pyinotify提供的事件: 事件标志 事件含义 IN_ACCESS 被监控项目或者被监控目录中的文件被访问,比如一个文件被读取 ...
- python 之常用模块
一 认识模块 二 常用模块 (1)re模块 (2)collections模块 一 认识模块 (1)什么是模块 (2)模块的导入和使用 (1)模块是:一个模块就是一个包含 ...
- Python之常用模块--collections模块
认识模块 什么是模块? 常见的场景:一个模块就是一个包含了python定义和声明的文件,文件名就是模块名字加上.py的后缀. 但其实import加载的模块分为四个通用类别: 1 使用python编写的 ...
- Python自动化开发之python的常用模块
python常用模块 模块的种类:模块分为三种,分别是自定义模块:内置标准模块(即标准库):开源模块(第三方). 以下主要研究标准模块即标准库:标准库直接导入即可,不需要安装. 时间模块:time , ...
- python基础----常用模块
一 time模块(时间模块)★★★★ 时间表现形式 在Python中,通常有这三种方式来表示时 ...
- python(五)常用模块学习
版权声明:本文为原创文章,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明. https://blog.csdn.net/fgf00/article/details/52357 ...
随机推荐
- nodejs 的一些PHP函数库
http://locutus.io/php/ nodejs 的一些PHP函数库 PHP extensions in JavaScript array array_change_key_case arr ...
- python-一切事物都是对象
python:一切事物都是对象 开始接触python,在里面有一句话“一切事物都是对象”,那么如何来理解这句话呢,下面举简单的例子: a=1 b='hello't=(11,22,33) list1=[ ...
- Django Reverse for 'artic_post' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
Reverse for 'home' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: [] ...
- 继承FileInputFormat类来理解 FileInputFormat类
import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.had ...
- centos开启rewrite功能
首先找到 /etc/httpd/conf/httpd.conf 文件,然后修改以下两个地方: 1.取消下面一句的注释 LoadModule rewrite_module modules/mod_rew ...
- CXF报错[1 counts of IllegalAnnotationExceptions]and[Two classes have the same XML type name]and[Use @XmlType.name and @XmlType.namespace to assign different names to them]
启动时CXF报错如下: Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalA ...
- System.Threading.Tasks
前言: 我们之前介绍了两种构建多线程软件的编程技术(使用异步委托或通过System.Threading的成员).这两个可以在任何版本的.NET平台工作. 关于System.Threading 的介绍 ...
- js动画效果
js能够按照预定的时间间隔重复调用一个函数,而这意味着我们可以随着时间的推移而不断改变某个元素的样式.动画是样式随时间变化的完美例子之一. js函数setTimeout能够让某个函数在经过一段预定的时 ...
- cursor 在某一操作之前打开 fetch cursorname into var1
工作中遇到这样一个问题,在一个存储过程中,我想让一个游标在某一操作之前打开,说白了操作会影响我游标中已定义好的数据,这里我们用到游标的第二种用法,代码如下 cursor c_relation is s ...
- 详解LinkedHashMap如何保证元素迭代的顺序
大多数情况下,只要不涉及线程安全问题,Map基本都可以使用HashMap,不过HashMap有一个问题,就是迭代HashMap的顺序并不是HashMap放置的顺序,也就是无序.HashMap的这一缺点 ...