码迷,mamicode.com
首页 > 编程语言 > 详细

python学习之路-day5

时间:2016-08-26 12:00:36      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

本节内容:

模块详解

1、模块定义

2、os&sys模块

3、time&datetime模块

4、random模块

5、shutil模块

6、shelve模块

7、configparser模块

8、hashlib模块

9、re模块

一、模块定义

1.导入模块

import

import  main  #导入这个模块(文件),就是将python文件解释一遍
print(main.name)

main.logger    #调用main文件里面的logger函数

from main import logger
logger()  #使用from在main.py文件里面导入logger函数,下面可直接使用main文件里面的logger函数

main.py:

# __author__ = ‘lw‘
name = ‘lw‘
def logger():
    print(‘this is a test‘)

import包的本质就是执行该包下的__init_.py文件(可在__init__.py文件里面print测试)

二、os&sys模块

import os,sys

print(os.path.abspath(__file__)) 文件的绝对路径

print(os.path.dirname(os.path.abspath(__file__))))   #文件路径的文件夹的路径

print(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) #文件路径的文件夹的路径的父目录的路径

sys.path.append(x)  将这个路径添加到环境变量,即可以导入这个目录下的模块

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    输出用于分割文件路径的字符串(当前系统的分隔符)
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所指向的文件或者目录的最后修改时间

三、time&datatime模块

time.time()#time.time()时间戳,在1970年到现在的秒数

tiem.sleep(2)  #休息几秒

time.gmtime ()#时间戳换成UTC时区的时间的元组,不加参数默认当时时间戳

time.localtime()#元组的形式获取当前时间

import time
x =time.localtime()
print(x.tm_year)       #当前是什么年份
import time
x =time.localtime(152533333)
print(x.tm_year)

strftime(“格式”,时间的元组形式)  #将当前时间(元组形式)转换成格式化的字符串时间

import time
x =time.localtime()
y = time.strftime("%Y-%m-%d %H:%M:%S",x)   #格式自定义,%Y其实就是x.tm_year,一次类推
print(y)

strptime(”格式化的字符串”,“格式”)#将当前时间的格式化字符串格式转成元组形式

z = time.strptime("2016-08-20 14:42:52","%Y-%m-%d %H:%M:%S")
print(z)

asctime()#将元组形式的时间转换成字符串,不加参数,默认是localtime()

t = time.asctime()
print(t)

#时间加减

import datetime
# print(datetime.datetime.now()) #返回 2016-08-19 12:47:03.941925

#print(datetime.date.fromtimestamp(time.time()) )  # 时间戳直接转成日期格式 2016-08-19
# print(datetime.datetime.now() 
# print(datetime.datetime.now() + datetime.timedelta(3)) #当前时间+3天
# print(datetime.datetime.now() + datetime.timedelta(-3)) #当前时间-3天
# print(datetime.datetime.now() + datetime.timedelta(hours=3)) #当前时间+3小时
# print(datetime.datetime.now() + datetime.timedelta(minutes=30)) #当前时间+30分
# c_time  = datetime.datetime.now()
# print(c_time.replace(minute=3,hour=2)) #时间替换

四、random模块

 1 import random
 2 print(random.random())  #随机数,
 3 print(random.randint(1,3))   
 4 ==================================
 5  import random
 6 print (random.random())  #0.6445010863311293  
 7 #random.random()用于生成一个0到1的随机符点数: 0 <= n < 1.0
 8 print (random.randint(1,7)) #4
 9 #random.randint()的函数原型为:random.randint(a, b),用于生成一个指定范围内的整数。
10 
11 # 其中参数a是下限,参数b是上限,生成的随机数n: a <= n <= b
12 print (random.randrange(1,10)) #5
13 #random.randrange的函数原型为:random.randrange([start], stop[, step]),
14 # 从指定范围内,按指定基数递增的集合中 获取一个随机数。如:random.randrange(10, 100, 2),
15 # 结果相当于从[10, 12, 14, 16, ... 96, 98]序列中获取一个随机数。
16 # random.randrange(10, 100, 2)在结果上与 random.choice(range(10, 100, 2) 等效。
17 print(random.choice(liukuni)) #i
18 #random.choice从序列中获取一个随机元素。
19 # 其函数原型为:random.choice(sequence)。参数sequence表示一个有序类型。
20 # 这里要说明一下:sequence在python不是一种特定的类型,而是泛指一系列的类型。
21 # list, tuple, 字符串都属于sequence。有关sequence可以查看python手册数据模型这一章。
22 # 下面是使用choice的一些例子:
23 print(random.choice("学习Python"))#
24 print(random.choice(["JGood","is","a","handsome","boy"]))  #List
25 print(random.choice(("Tuple","List","Dict")))   #List
26 print(random.sample([1,2,3,4,5],3))    #[1, 2, 5]
27 #random.sample的函数原型为:random.sample(sequence, k),从指定序列中随机获取指定长度的片断。sample函数不会修改
28 例:
29 import random
30 import string
31 #随机整数:
32 print( random.randint(0,99))  #70
33 #随机选取0到100间的偶数:
34 print(random.randrange(0, 101, 2)) #4
35 #随机浮点数:
36 print( random.random()) #0.2746445568079129
37 print(random.uniform(1, 10)) #9.887001463194844
38 #随机字符:
39 print(random.choice(abcdefg&#%^*f)) #f
40 
41 #多个字符中选取特定数量的字符:
42 print(random.sample(abcdefghij,3)) #[‘f‘, ‘h‘, ‘d‘]
43 
44 #随机选取字符串:
45 print( random.choice ( [apple, pear, peach, orange, lemon] )) #apple
46 
47 #洗牌#
48 items = [1,2,3,4,5,6,7]
49 print(items) #[1, 2, 3, 4, 5, 6, 7]
50 random.shuffle(items)
51 print(items) #[1, 4, 7, 2, 5, 3, 6] 

 

python学习之路-day5

标签:

原文地址:http://www.cnblogs.com/liang-wei/p/5806081.html

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