码迷,mamicode.com
首页 > 其他好文 > 详细

(5)PY_(study)

时间:2018-05-09 01:24:18      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:验证码   admin   div   +=   意思   不为   大写   当前目录   stat   

一,re 正则模块

二、time datetime 时间模块

三、random 模块

四、OS模块

 

 

 

 

 

 

 

 

 

一,正则模块re

一:什么是正则?

 正则就是用一些具有特殊含义的符号组合到一起(称为正则表达式)来描述字符或者字符串的方法。

import re

print(re.findall(‘\w‘,‘egon 123 = — - +‘)) #\w 匹配字母数字下划线

打印结果:[‘e‘, ‘g‘, ‘o‘, ‘n‘, ‘1‘, ‘2‘, ‘3‘]

 

正则常用操作
# Author:land
#print(re.findall(‘\w‘,‘egon 123 + _ - +‘))  #\w 匹配字母数字下划线


#?:   代表?号左边的字符出现0次或者1次

#*:   代表*号左边的字符出现0次或者无穷次

#+:   代表+号左边的字符出现1次或者无穷次

#{m,n}:   代表号左边的字符出现0次或者无穷次


#.*  贪婪匹配

#.*?  非贪婪匹配  (用这个)

#re.search()  #值匹配成功一次就返回
#re.match()   #从开头取



import re

# print(re.findall(‘\w‘,‘egon 123 = — - +‘)) #\w 匹配字母数字下划线
# print(re.findall(‘\W‘,‘egon 123 = — - +‘)) #\w 匹配非字母数字下划线
# print(re.findall(‘\s‘,‘egon 123 = — - +‘)) #\s 匹配任意空白字符
# print(re.findall(‘\S‘,‘egon 123 = — - +‘)) #\S

#重复. * ? + {m,n}

# . 代表匹配任意一个字符
# print(re.findall(‘a.b‘,‘alb a b a-b aaaaab‘))
#                   # a.b
#
# print(re.findall(‘a.b‘,‘alb a\nb a-b aaaaab‘,re.DOTALL))  #匹配出\n



#? ?号代表她左边的字符出现0次或者1次
# print(re.findall(‘ab?‘,‘ab a b a-b abbbb‘))

#* *号代表她左边的字符出现0次或者无穷次
# print(re.findall(‘ab*‘,‘ab a b a-b aabbbbb‘))

#+  +号代表她左边的字符出现1次或者无穷次
# print(re.findall(‘ab+‘,‘ab a b a-b aabbbbb‘))

# {m,n} 代表左边的字符出现m到n次
#print(re.findall(‘ab{1,3}‘,‘ab a b a-b aabbbbb‘))


#.*  贪婪匹配
#print(re.findall(‘a.*b‘,‘ab  jfnj cc xxxxaayyybbbbb‘))

#.*?  非贪婪匹配  常用
#print(re.findall(‘a.*?b‘,‘ab  jfnj cc xxxxaayyybbbbb‘))


#| 或者
# print(re.findall(‘compla(y|ies)‘,‘too  girl complay  and  complaies‘))
# print(re.findall(‘compla(?:y|ies)‘,‘too  complay  and  complaies‘))


# print(re.findall(r‘a\\c‘,‘a\c alc aBc‘))  #r的意思是不要做语法级别的转义                                         #不加r会报错
# print(re.findall(‘a\\\\c‘,‘a\c alc aBc‘))  #不加r的时候

#[]  去[]号内任意一个字符


#re模块其他方法
#re.search()    只匹配成功一次就返回
# print(re.search(‘a[^-+*/]b‘,‘axb azb aAb alb a-b a+b‘))
# print(re.search(‘a[*]b‘,‘axb azb aAb alb a-b a+b‘))  #没结果返回none
# print(re.search(‘a[0-9]b‘,‘axb azb aAb a2b a-b a+b‘).group())

#re.split()   以冒号分割
#print(re.split(‘:‘,‘root:x:0:0::/root:/bin/bash‘))

#re.sub()  就替换的意思
print(re.sub(‘root‘,‘admin‘,‘root:x::0:0:/bin/bash‘))  #把root替换为admin

#re.compile()

 

二、time 时间模块

在Python中,通常有这几种方式来表示时间:

  • 时间戳(timestamp):通常来说,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量。我们运行“type(time.time())”,返回的是float类型。
  • 格式化的时间字符串(Format String)
  • 结构化的时间(struct_time):struct_time元组共有9个元素共九个元素:(年,月,日,时,分,秒,一年中第几周,一年中第几天,夏令时)
# Author:land
import time

#print(time.time())
#print(time.localtime())  #结构化时间
#print(time.localtime().tm_mday)

#print(time.gmtime())

print(time.strftime(‘%Y-%m-%d %H:%M:%S‘))

 

import datetime

print(datetime.datetime.now())
print(datetime.datetime.fromtimestamp(2222222))

print(datetime.datetime.now()+datetime.timedelta(days=3))  #3天以后的时间
print(datetime.datetime.now()+datetime.timedelta(days=-3))  #3天以前的时间
print(datetime.datetime.now()+datetime.timedelta(hours=3))  #3小时以后的时间

print(datetime.datetime.now().replace(year=1999,hour=12))

 

三、random 模块

# Author:land
import random

# print(random.random())  #取0-1之间的小树
# print(random.randint(1,3))
# print(random.randrange(1,3))
# print(random.choice([1,‘jdu‘,‘fg‘]))
#
# print(random.uniform(1,3))

#随机生成字母数字验证码
def mak_code(n):
    res=‘‘                       #定义一个空字符串
    for i in range(n):
        s1=str(random.randint(0,9))    #获取一盒随机整数 然后转换成字符
        s2=chr(random.randint(65,90))   #获取A-Z的大写字母
        res+=random.choice([s1,s2])     #然后随机选择一个进行相加n次
    return res   #返回res

print(mak_code(4))

 

四、OS模块

os模块是与操作系统交互的一个接口

os.getcwd() 获取当前工作目录,即当前python脚本工作的目录路径
os.chdir("dirname")  改变当前脚本工作目录;相当于shell下cd
os.curdir  返回当前目录: (‘.‘)
os.pardir  获取当前目录的父目录字符串名:(‘..‘)
os.makedirs(‘dirname1/dirname2‘)    可生成多层递归目录
os.removedirs(‘dirname1‘)    若目录为空,则删除,并递归到上一级目录,如若也为空,则删除,依此类推
os.mkdir(‘dirname‘)    生成单级目录;相当于shell中mkdir dirname
os.rmdir(‘dirname‘)    删除单级空目录,若目录不为空则无法删除,报错;相当于shell中rmdir dirname
os.listdir(‘dirname‘)    列出指定目录下的所有文件和子目录,包括隐藏文件,并以列表方式打印
os.remove()  删除一个文件
os.rename("oldname","newname")  重命名文件/目录
os.stat(‘path/filename‘)  获取文件/目录信息
os.sep    输出操作系统特定的路径分隔符,win下为"\\",Linux下为"/"
os.linesep    输出当前平台使用的行终止符,win下为"\t\n",Linux下为"\n"
os.pathsep    输出用于分割文件路径的字符串 win下为;,Linux下为:
os.name    输出字符串指示当前使用平台。win->‘nt‘; Linux->‘posix‘
os.system("bash command")  运行shell命令,直接显示
os.environ  获取系统环境变量
os.path.abspath(path)  返回path规范化的绝对路径
os.path.split(path)  将path分割成目录和文件名二元组返回
os.path.dirname(path)  返回path的目录。其实就是os.path.split(path)的第一个元素
os.path.basename(path)  返回path最后的文件名。如何path以/或\结尾,那么就会返回空值。即os.path.split(path)的第二个元素
os.path.exists(path)  如果path存在,返回True;如果path不存在,返回False
os.path.isabs(path)  如果path是绝对路径,返回True
os.path.isfile(path)  如果path是一个存在的文件,返回True。否则返回False
os.path.isdir(path)  如果path是一个存在的目录,则返回True。否则返回False
os.path.join(path1[, path2[, ...]])  将多个路径组合后返回,第一个绝对路径之前的参数将被忽略
os.path.getatime(path)  返回path所指向的文件或者目录的最后存取时间
os.path.getmtime(path)  返回path所指向的文件或者目录的最后修改时间
os.path.getsize(path) 返回path的大小

 

(5)PY_(study)

标签:验证码   admin   div   +=   意思   不为   大写   当前目录   stat   

原文地址:https://www.cnblogs.com/lxqr/p/9011694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!