码迷,mamicode.com
首页 >  
搜索关键字:today    ( 1157个结果
编写函数,第一个参数指定今天是星期几(1 ~ 7),第二个参数指定天数n,返回n天后是星期几
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
8.请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母
#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
CodeForces - 660F:Bear and Bowling 4(DP+斜率优化)
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
Build Tool-自动化构建工具
输入:工程文件+编译说明文件; 处理:自动化构建工具+编译器; 输出:可执行文件。 相对于手动编译。 Historically, build automation was accomplished through makefiles. Today, there are two general cat ...
分类:其他好文   时间:2018-06-25 20:21:39    阅读次数:264
Django ORM 最后操作
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
java之Date类及SimpleDateFormat类
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
JavaScript学习
前提知识: 编译:程序语言变为机器语言的过程。 解释性语言:执行一行,编译一行。编译性语言:执行前,编译所有代码。 编译性语言: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
1157条   上一页 1 ... 8 9 10 11 12 ... 116 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!