1、获取当前月份前一个月月份 import datetime aaa = ((datetime.datetime.now() + datetime.timedelta(days = -30))).strftime("%Y%m") print(aaa) 2、遍历目录 os.walk(dir_name)... ...
分类:
其他好文 时间:
2018-04-16 16:22:27
阅读次数:
172
一、文件的打开和关闭 1.常用的打开关闭语句 第一行是打开名为“yesterday”的文件,只读属性,编码方式为utf-8。如果没有指定文件打开方式,默认只读“r”,如果没有指定编码方式可能会部分乱码。 第二行是关闭文件 2.with as语句 目的:为了防止程序员打开文件后忘记关闭文件 3.文件打 ...
分类:
编程语言 时间:
2018-04-12 00:11:21
阅读次数:
297
http://wthrcdn.etouch.cn/weather_mini?city=北京 或者是 http://wthrcdn.etouch.cn/weather_mini?citykey=101280601 citykey:编号:城市key ...
分类:
其他好文 时间:
2018-03-28 12:21:39
阅读次数:
279
#!/bin/bash#cut nginx logs 按天切割nginx日志文件#__Author__:Allen_Jol at 2017-09-21LOGS_PATH="/usr/local/nginx/logs/"PID_PATH="/usr/local/nginx/logs/nginx.pid"YESTERDAY=$(date -d &qu
分类:
其他好文 时间:
2018-03-25 15:52:11
阅读次数:
153
1 f = open("yesterday","r",encoding='utf-8') 2 f_new = open("yesterday2","w",encoding='utf-8') 3 4 for line in f: 5 if "杜姗姗" in line: 6 line = line.re ...
分类:
其他好文 时间:
2018-03-20 18:09:41
阅读次数:
143
php 获取今日、昨日、上周、本月的起始时间戳和结束时间戳的方法,主要使用到了 php 的时间函数 mktime。下面首先还是直奔主题以示例说明如何使用 mktime 获取今日、昨日、上周、本月的起始时间戳和结束时间戳,然后在介绍一下 mktime 函数作用和用法。 01 //php获取今日开始时间 ...
分类:
Web程序 时间:
2018-03-14 15:04:58
阅读次数:
230
---title: 斯坦福-随机图模型-week2.2tags: notenotebook: 6- 英文课程-9-Probabilistic Graphical Models 1: Representation--- # 斯坦福-随机图模型-week2.2 ## 习题 ### 1。第 1 个问题 M... ...
分类:
其他好文 时间:
2018-03-12 10:26:12
阅读次数:
193
Hacker Zhorik wants to decipher two secret messages he intercepted yesterday. Yeah message is a sequence of encrypted blocks, each of them consists of ...
分类:
其他好文 时间:
2018-03-10 14:06:02
阅读次数:
232
1、文件操作1、文件操作流程:打开文件,得到文件句柄并赋值给一个变量===>file=open("yesterday",encoding="utf-8")通过句柄对文件进行操作关闭文件==>file.close()1.2、打开文件的模式r,只读模式(默认)。w,只写模式。【不可读;不存在则创建;存在则删除内容;】a,追加模式。【可读;不存在则创建;存在则只追加内容;】"+"表示可以同时
分类:
编程语言 时间:
2018-03-05 18:15:55
阅读次数:
225
Question: Given a Weather table, write a SQL query to find all dates' Ids with higher temperature compared to its previous (yesterday's) dates. + + + ...
分类:
其他好文 时间:
2018-03-03 21:27:43
阅读次数:
199