python常用模块学习1
import time
time.sleep(1)#暂停时间
time.time()#显示当前系统时间戳
t=time.localtime()#结构化当地时间,可以将结构化时间想象成一个类
print(t.tm_year)#通过属性访问
#--将结构化时间转换为时间戳 mktime #print(time.mktime(time.localtime())) #----将结构化时间转换成字符串时间strftime
print(time.strftime("%Y-%m-%d %X",time.localtime())) #将字符串时间转换为结构化时间 strptime
print(time.strptime("2016:12:24:17:50:20","%Y:%m:%d:%X")) print(time.strptime("2016:12:24:17:50:20","%Y:%m:%d:%X")) #获取固定格式时间
# print(time.asctime())
# print(time.ctime(time.time())) import datetime
print(datetime.datetime.now())
import random
#
# ret=random.random()
# #print(ret)
# #random的取值范围为0到1的小数
# print(int(ret*10))
#
# print(random.randint(1,3))#范围1-3
#
# print(random.randrange(0,6))#范围0-5同range一样不包括最后的数
#
#
# print(random.choice([11,22,33,55,66]))#choice随机选取一个数
# print(random.sample([11,22,33,55,66],2))#sample取两个随机数
#
#
# item=[1,4,5,7,9]
# random.shuffle(item)
# print(item) #验证码
def v_code():
ret=""
for i in range(4):
num=random.randint(0,9)
alf=chr(random.randint(65,122))
s=str(random.choice([num,alf]))
ret+=s
return ret print(v_code())
#os模块是与操作系统交互的一个接口 import os # print(os.getcwd())#获取当前的工作路径
# #os.chdir("..")#改变当前工作目录
# os.chdir("test1")
# print(os.getcwd()) #os.makedirs("dirname1/dirname2")可生成多层递归目录 #os.removedirs("dirname1/dirname2")#若目录为空,则删除并递归到上级目录,若也为空也删除 # os.remove()删除文件 #print(os.listdir("my_modle")) print(os.stat("bin.py")) #os.sep()输出当前操作系统的特定路径分隔符 print(os.sep) #print(os.system("dir")) print(os.path.split("modle_test\\bin.py"))#将path分割成目录和文件名二元组返回 print(os.path.dirname("modle_test\\bin.py"))#返回path目录 a=r"C:\users\admin"
b=r"modle_test\test1\bin.py" print(os.path.join(a,b))#路径拼接 print(os.environ)#系统的环境变量
#
import sys
#
# print(sys.argv)#命令行参数List,第一个元素是程序本身路径
#
# command=sys.argv[1]
# path=sys.argv[2]
#
# if command=="post":
# pass
#
#
# elif command=="download":
# pass
# #向屏幕显示相应内容
import time
for i in range(100): sys.stdout.write("#")
time.sleep(0.1)
sys.stdout.flush()#屏幕刷新
#sys.stdout.write("#")
python常用模块学习1的更多相关文章
- Python常用模块学习
1.模块介绍 2.time & datetime模块 3.random 4.os 5.sys 6.shutil 7.json&pickle 8.shelve 9.xml处理 10.ya ...
- python常用模块学习3
# # dic='{"name":"tang"}' # # f=open("hello",'w') # # f.write(dic) # # ...
- python常用模块学习2
#sys模块 import sys # # print(sys.argv)#命令行参数List,第一个元素是程序本身路径 #主要用作网络请求判断 # command=sys.argv[1] # pat ...
- Python常用模块——目录
Python常用模块学习 Python模块和包 Python常用模块time & datetime &random 模块 Python常用模块os & sys & sh ...
- Day5 - Python基础5 常用模块学习
Python 之路 Day5 - 常用模块学习 本节大纲: 模块介绍 time &datetime模块 random os sys shutil json & picle shel ...
- python常用模块之时间模块
python常用模块之时间模块 python全栈开发时间模块 上次的博客link:http://futuretechx.com/python-collections/ 接着上次的继续学习: 时间模块 ...
- python常用模块-调用系统命令模块(subprocess)
python常用模块-调用系统命令模块(subprocess) 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. subproces基本上就是为了取代os.system和os.spaw ...
- python 常用模块 time random os模块 sys模块 json & pickle shelve模块 xml模块 configparser hashlib subprocess logging re正则
python 常用模块 time random os模块 sys模块 json & pickle shelve模块 xml模块 configparser hashlib subprocess ...
- Python常用模块sys,os,time,random功能与用法,新手备学。
这篇文章主要介绍了Python常用模块sys,os,time,random功能与用法,结合实例形式分析了Python模块sys,os,time,random功能.原理.相关模块函数.使用技巧与操作注意 ...
随机推荐
- sh_06_个人信息
sh_06_个人信息 """ 姓名:小明 年龄:18 岁 性别:是男生 身高:1.75 米 体重:75.0 公斤 """ # 在 Pytho ...
- win10 安装了virtualBox 启动报错 rc=-5640
刚刚安装的virtualbox 启动就弹窗报错,,但是通过找到log 发现了下面这样的一处报错: 然后搜素发现是跟win10应用程序错误,,解决办法如下: 1.到控制面板,,--程序 再次尝试,vir ...
- Log4net记录日志到本地或数据库
OperatorLog /****** Object: Table [dbo].[OperatorLog] Script Date: SET ANSI_NULLS ON GO SET QUOTED_I ...
- 关于linux中移动目录和到指定目录和移动目录中的数据到指定目录
#这里表示将目录node-v12.13.1-linux-x64移动到/usr/local/中重命名为node,所以node目录可以不存在[root@alone ~]# mv node-v12.13.1 ...
- 在centos7.4 nginx mysql php部署 thinkphp5.0 项目
系统 centos7 环境 php 7.1.3 nignx 1.12.2 mysql 5.5.6 我是通过lnmp 集成环境安装 fastcgi.conf 末尾添加 vim fastcig.conf ...
- idea下载和设置自动翻译(有道)
1:下载 点击file,点击settings,找到plugins,之后所搜translation并下载,他会自动从新启动idea 2:设置translation 3:这个应用ID和秘钥需要在有道智云去 ...
- Good teachers,they inspire you, they entertain you,and you end up learning a ton even when you don't know it.
pardon. v. 原谅.抱歉.再说一次 honourable.adj.值得钦佩的 specification.n.规格.标准 amongst.prep.在...中 gallon.n.加仑 comp ...
- 2 Vue.js基础
1 简易计算器 <!DOCTYPE html> <html lang="en"> <head> <meta charset="U ...
- Web高级 JavaScript中的算法
算法 排序算法 稳定排序 待排序序列中相等元素在排序完成后,原有先后顺序不变. 非稳定排序 有序度 待排序序列中有序关系的元素对个数. 逆序度 1. 插入排序 遍历有序数组,对比待插入的元素大小,找到 ...
- MySQL-第十一篇JDBC典型用法
1.JDBC常用方式 1>DriverManager:管理JDBC驱动的服务类.主要用于获取Connection.其主要包含的方法: public static synchronize ...