码迷,mamicode.com
首页 >  
搜索关键字:today    ( 1157个结果
Nearby Bicycles
With fast developments of information and communication technology, many cities today have established bicycle sharing systems. The key component of t ...
分类:其他好文   时间:2018-04-07 01:09:24    阅读次数:207
python time模块
#! /usr/bin/env python# -*- coding:utf-8 -*-import timeprint("111")time.sleep(2)#推迟调用线程的运行,secs的单位是秒print("222")today = time.time() #返回当前时间的时间戳(1970元年 ...
分类:编程语言   时间:2018-04-06 15:30:15    阅读次数:179
python day2
from datetime import datetime odds=[1,3,5,7,9,11,13,15,17,19, 21,23,25,27,29,31,33,35,37,39, 41,43,45,47,49,51,53,55,57,59] for i in range(60): import ...
分类:编程语言   时间:2018-04-06 12:29:08    阅读次数:188
Fluent_Python,01-data-model
01 data model/frenchdeck.py 1. Python解释器碰到特殊的句法时,会使用__特殊方法__去激活一些基本的对象操作。 特殊方法的存在是为了被解释器用的。没有my_object.len()这种写法,应该用len(my_object)。 比如my_collection[ke ...
分类:编程语言   时间:2018-04-03 22:11:19    阅读次数:189
TOJ1017: Tour Guide
描述 You are working as a guide on a tour bus for retired people, and today you have taken your regular Nordic seniors to The Gate of Heavenly Peace. Yo ...
分类:其他好文   时间:2018-03-30 00:13:18    阅读次数:431
day8-心得
1. Socket介绍 概念 A network socket is an endpoint of a connection across a computer network. Today, most communication between computers is based on the  ...
分类:其他好文   时间:2018-03-29 22:37:41    阅读次数:254
python web开发-flask中读取txt文件内容
某些情况下,需要读取flask网站要目录下的txt文件。但是直接在flask网站的目录下创建一个文件是无法访问的。从网站找了一些资料,最终发现通过写一个方法返回txt内容比较简单方便,不过此方法适用于简单的文件读取以及读取量比较小的时候。详细代码如下:@app.route(‘/<path>‘)def today(path):base_dir = os.path.dirname(__fi
分类:编程语言   时间:2018-03-22 14:09:03    阅读次数:212
4.1 今天日期 time.Now
```go package main import ( "fmt" "time" ) func main() { today := time.Now() fmt.Println(today) } /* 2018-03-22 00:18:44.558974 +0800 CST m=+0.0003855... ...
分类:其他好文   时间:2018-03-22 01:47:03    阅读次数:118
shell中的死记硬背
一、shell的引号们1."" -> 双引号(不保留完整内容,比如遇到$, 反引号, \ 等就会执行相应的shell) echo "Today is `date`" -> Today is Wed Aug 3 05:50:34 GMT 2011 2.'' -> 单引号(完整保留内容) echo "T... ...
分类:系统相关   时间:2018-03-21 14:10:06    阅读次数:216
【TOJ 3136】Ubiquitous Religions
Description There are so many different religions in the world today that it is difficult to keep track of them all. You are interested in finding out ...
分类:其他好文   时间:2018-03-14 18:03:52    阅读次数:168
1157条   上一页 1 ... 13 14 15 16 17 ... 116 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!