摘要:
import time,datetime #获取今日凌晨的时间 d = datetime.datetime.strptime(str(datetime.date.today()),"%Y-%m-%d")time_sec_float = time.mktime(d.timetuple())print 阅读全文
摘要:
re.match re.match 尝试从字符串的开始匹配一个模式,如:下面的例子匹配第一个单词。 import retext = "JGood is a handsome boy, he is cool, clever, and so on..."m = re.match(r"(\w+)\s", 阅读全文
摘要:
1.字典中嵌套字典使用 dict={'a':{1:2,2:3}} print(dict) print(dict['a'][2]) 输出如下: {'a': {1: 2, 2: 3}} 3 2.元组与list区别 1)元组使用小括号(),列表使用方括号[] 2)列表元素可以更改和删除单个元素,而元组既不 阅读全文