1 def week(today, n): 2 s = n % 7 + today 3 return "n天后是星期:{}".format(s) 4 5 6 print(week(1, 3)) ...
分类:
其他好文 时间:
2018-07-05 23:31:56
阅读次数:
383
#encoding=utf-8 week_num=raw_input("input:") if week_num.lower()=="m": print "today is monday" elif week_num.lower()=="w": print "today is wednesday" ...
分类:
其他好文 时间:
2018-07-02 20:23:29
阅读次数:
174
Limak is an old brown bear. He often goes bowling with his friends. Today he feels really good and tries to beat his own record! For rolling a ball on ...
分类:
其他好文 时间:
2018-06-30 14:49:48
阅读次数:
198
输入:工程文件+编译说明文件; 处理:自动化构建工具+编译器; 输出:可执行文件。 相对于手动编译。 Historically, build automation was accomplished through makefiles. Today, there are two general cat ...
分类:
其他好文 时间:
2018-06-25 20:21:39
阅读次数:
264
F查询:代表2个字段之间的比较 from django.db.models import F models.Book.objects.filter(price__gt=F('keep_price')) 也可以在F()后面进行运算,不过只能对数字 models.Book.objects.filter( ...
分类:
其他好文 时间:
2018-06-22 20:30:38
阅读次数:
160
公式详解:TODAY() 表示系统当前的日期: =DATEDIF(B2,TODAY(),"Y")表示计算B2单元格中的日期与系统当前的日期之间的年差 函数:=DATEDIF(B2,TODAY(),"Y") ...
分类:
其他好文 时间:
2018-06-20 14:46:06
阅读次数:
154
string name = "Mark"; var date = DateTime.Now; 复合格式设置{}: // Composite formatting: Console.WriteLine("Hello, {0}! Today is {1}, it's {2:HH:mm} now.", n ...
分类:
其他好文 时间:
2018-06-20 12:58:02
阅读次数:
172
1 public class Demo6_Date { 2 3 /* 4 * A: 类Date表示特定的瞬间,精确到毫秒 5 * B:构造方法 6 * public Date() 无参时代表当前时间 7 * public Date(long date) 传入参数时代表获取特定时间的 8 ... ...
分类:
编程语言 时间:
2018-06-20 00:08:26
阅读次数:
191
前提知识: 编译:程序语言变为机器语言的过程。 解释性语言:执行一行,编译一行。编译性语言:执行前,编译所有代码。 编译性语言:shell,JavaScript,HTML,python 编译性语言:Java 一、是什么? JavaScript 是脚本语言。可插入HTML页面的编程代码,可由所有的现代 ...
分类:
编程语言 时间:
2018-06-19 22:52:19
阅读次数:
217
统计生成日期为昨天的数据(按日期算,非24小时):via1.py#!/usr/bin/pythonimportosimportdatetimeimportshutildir="/ming"yesterday=datetime.date.today()-datetime.timedelta(days=1)os.remove("/log/110Hudrm/gmsnew.t
分类:
其他好文 时间:
2018-06-19 18:54:47
阅读次数:
152