上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页
摘要: web实例 考虑有这么一个场景,根据用户输入的url的不同,调用不同的函数,实现不同的操作,也就是一个url路由器的功能,这在web框架里是核心部件之一。下面有一个精简版的示例: 首先,有一个commons模块,它里面有几个函数,分别用于展示不同的页面,代码如下: 1 2 3 4 5 6 7 8 9 阅读全文
posted @ 2017-06-16 14:29 AlamZ 阅读(189) 评论(0) 推荐(0) 编辑
摘要: Python之所以应用越来越广泛,在一定程度上也依赖于其为程序员提供了大量的模块以供使用,如果想要使用模块,则需要导入。导入模块有一下几种方法: import module from module.xx.xx import xx from module.xx.xx import xx as rena 阅读全文
posted @ 2017-06-16 14:19 AlamZ 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Python的字符串格式化有两种方式: 百分号方式、format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存。 百分号 1 tpl = "i am %s" % "alex" 2 #i am alex 3 4 tpl = "i am %s a 阅读全文
posted @ 2017-06-16 11:02 AlamZ 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python #coding:utf-8 import time print time.time() print time.mktime(time.localtime()) print time.gmtime() #可加时间戳参数 print time.localtime() #可加时间戳参数 print time.strptime('2014-11-1... 阅读全文
posted @ 2017-06-15 16:43 AlamZ 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 对于序列中的元素进行筛选,最终获取符合条件的序列 阅读全文
posted @ 2017-06-15 11:34 AlamZ 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 遍历序列,对序列中每个元素进行操作,最终获取新的序列。 传入一个函数和一个list 1 # -*- coding: utf-8 -*- 2 3 li = [11, 22, 33] 4 5 new_list = map(lambda a: a + 100, li) 6 7 print new_list 阅读全文
posted @ 2017-06-15 11:31 AlamZ 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 最简单的模板是这样的 1 #-*-coding:utf-8-*- 2 3 def outer(func): 4 def inner(): 5 print 'before' 6 func() 7 print 'after' 8 # return r 9 return inner 10 ''' 11 d 阅读全文
posted @ 2017-06-14 11:32 AlamZ 阅读(9669) 评论(0) 推荐(0) 编辑
摘要: --使用参数组可以传值列表,字典:格式 ********************3(4,){'age': '5', 'name': '3'}********************3(1, 3, 4){}********************123([1, 2, 3, 4, 5], {'age': 阅读全文
posted @ 2017-06-13 17:22 AlamZ 阅读(2029) 评论(0) 推荐(0) 编辑
摘要: [[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]][Finished in 0.2s] {1: 'a', 2: 'b'}<type 'dict'>[Finished in 0.2s] 风险 eval强大的背后,是巨大的安全隐患!!! 比如说,用户恶意输入下面的字符串 o 阅读全文
posted @ 2017-06-13 16:43 AlamZ 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: 1.隐藏页面的广告窗口 document.getElementById("top_left").style.display="none"; 2.隐藏控件点击 document.getElementsByClassName("prefpanelgo")[0].click(); 3. 3.1.滚动条回到 阅读全文
posted @ 2017-06-11 09:56 AlamZ 阅读(447) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页