码迷,mamicode.com
首页 >  
搜索关键字:strftime    ( 605个结果
使用python将文字写入word文档中
pip install python-docx 1.批量化往word文件中添加大批量重复的数据 from docx import Document from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.shared import Pt #磅数 ...
分类:编程语言   时间:2020-07-28 00:24:17    阅读次数:113
lua os.time和os.data详解
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:其他好文   时间:2020-07-14 12:59:15    阅读次数:223
python 读取xls文件
import xlrdfrom xlrd import xldate_as_tuplefrom IPScriptUtil import *from serverTest import *import reimport datetime'''xlrd中单元格的数据类型数字一律按浮点型输出,日期输出成一 ...
分类:编程语言   时间:2020-07-10 17:16:35    阅读次数:67
python标准库之time,random
1.time库: 获取当前本地时间:time.localtime() 获取本地时间字符串:time.ctime() 获取世界UTC时间:time.gmtime() 休眠:time.sleep() 获去时间戳:time.time() 获取时间的标准化输出:time.strftime("%Y-%m-%d ...
分类:编程语言   时间:2020-07-10 13:07:22    阅读次数:82
Python 常用模块
time模块importtimeprint(time.time())#时间戳print(time.mktime(time.localtime()))#struct_time——>时间戳print(time.strftime(‘%Y-%m-%d%H:%M:%S‘))#格式化的字符串print(time.strftime(‘%Y-%m-%d%H:%M:%S‘,time.localtime()))
分类:编程语言   时间:2020-07-09 09:20:40    阅读次数:91
paramiko交换机巡检
#-*- coding:UTF-8 -*- import paramiko import time starttime = time.strftime('%Y-%m-%d %T') start_info = "巡检开始时间:"+str(starttime) cmd_filepath = r"d:\P ...
分类:其他好文   时间:2020-07-07 10:11:19    阅读次数:74
python常用模块:
2020-07-03 datetime模块 一般就使用 datetime模块中, datetime类中,now()方法。 可通过strftime方法转换。 一句话表示用法: import datetime datetime.datetime.now().strftime("%Y%m%d-%H%M%S ...
分类:编程语言   时间:2020-07-04 10:26:28    阅读次数:70
生成时间戳
python 1 import time 2 3 # 秒级时间戳 4 print(int(time.time())) 5 # 1593748100 6 7 # 毫秒级时间戳 8 print(int(time.time() * 1000)) 9 # 1593748100746 10 11 # 用户友好 ...
分类:其他好文   时间:2020-07-03 12:27:02    阅读次数:82
自动化测试项目config常量
import time import os import getpass # 时间戳 times = time.strftime("%Y%m%d%H%M%S") # 项目的绝对路径 BASE_PATH = '/'.join(os.path.abspath(__file__).split("/")[: ...
分类:其他好文   时间:2020-06-27 13:23:15    阅读次数:52
Python模块---datetime
##datetime ###时间获取与转换 datetime.datetime.now() #获取本地时区当前时间对象 datetime.datetime.utcnow() #GMT 零时区当前时间对象 datetime.datetime.now(datetime.timezone(datetime ...
分类:编程语言   时间:2020-06-25 15:35:07    阅读次数:69
605条   上一页 1 2 3 4 5 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!