我的配置方案: set laststatus=0 "2总 ...
分类:
系统相关 时间:
2019-12-28 20:36:30
阅读次数:
99
time时间库主要有以下几个方法 1. 生成struct_time ,然后就可以很方便的获取到年月日,时分秒等信息 time.localtime() 2. 生成时间戳 time.time() 3. 将struct_time 转成指定格式的时间字符串 time.strftime(format,stru ...
分类:
其他好文 时间:
2019-12-24 23:18:41
阅读次数:
100
qi re 1. http://www.cplusplus.com/reference/ctime/strftime/ 2. http://man7.org/linux/man-pages/man3/strftime.3.html end ...
分类:
其他好文 时间:
2019-12-24 18:19:08
阅读次数:
83
import requests import time url = 'http://www.google.com.hk' print(time.strftime('%Y-%m-%d %H:%M:%S')) try: html = requests.get(url, timeout=5).text p ...
分类:
其他好文 时间:
2019-12-19 09:36:56
阅读次数:
71
def nrun(): report = ('report_' + ('%s') % time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime()) + '.html').replace('\\', '/') suite = unittest.default ...
分类:
其他好文 时间:
2019-12-12 15:03:09
阅读次数:
377
1 pd.to_datetime转成时间格式 2 设置格式 1 df1['付款时间1'] = pd.to_datetime(df1['付款时间']) 2 df1['year_month'] = df1['付款时间1'].apply(lambda x : x.strftime('%Y-%m-%d')) ...
分类:
其他好文 时间:
2019-12-11 19:20:16
阅读次数:
1138
Url from django.contrib import admin from django.urls import path from app01 import views urlpatterns = [ path('admin/', admin.site.urls), path('/upda ...
分类:
其他好文 时间:
2019-12-07 10:36:32
阅读次数:
371
通过python脚本批量检查上千台服务器存活状态,返回无法ping通的服务器列表。
分类:
其他好文 时间:
2019-12-03 10:21:09
阅读次数:
95
1、pow(x, 0.5)能够计算x的平方根,计算负数的平方根将产生:???????????????????????????????????????????????????????????????????????????????????????????????? A、ValueError错误 B、无 ...
分类:
其他好文 时间:
2019-12-02 13:50:49
阅读次数:
125
import timeprint('当前时间戳:%f' % time.time())time.sleep(3) # 暂停3秒继续执行t = time.localtime(1574949906) # 转换时间戳,出来是结构化时间print(time.strftime('%Y-%m-%d %H-%M-% ...
分类:
编程语言 时间:
2019-11-30 13:22:00
阅读次数:
98