python版本:2.7.6Python基础学习书摘。变量命名规范:
python的变量名只能由字母和数字组成,且必须以字母开头。
python的变量名不能使用系统已有的关键字,包括:andcontinueelseforimportnotraiseassertdefexceptfrominorr.....
分类:
编程语言 时间:
2014-05-29 03:57:37
阅读次数:
255
出现原因:PHP版本6中
取消了get_magic_quotes_gpc()函数,首先这个函数的作用:是为了防止sql注入,当该函数打开时将所有单引号,双引号,反斜线和空字符转会自动转为含有反斜线的溢出字符。PHP6取消magic_quotes机制,那么就是默认转义一些特殊字符来防止sql注入。可以...
分类:
Web程序 时间:
2014-05-29 02:31:10
阅读次数:
282
1. 最基本的读文件方法:# File: readline-example-1.pyfile =
open("sample.txt")while 1: line = file.readline() if not line: break pass # do
something 一行一行得从文件读数据....
分类:
编程语言 时间:
2014-05-29 01:34:30
阅读次数:
402
1.下载XMPPFramework,下载地址:https://github.com/robbiehanson/XMPPFramework2.创建项目并将XMPP库引入:3.添加需要的库文件:4.配置KissXML:OTHER_LDFLAGS
添加 -lxml2HEADER_SEARCH_PATHS ...
分类:
移动开发 时间:
2014-05-28 23:46:15
阅读次数:
472
只需以下两行命令:$ cd
android-sdk/platform-tools/systrace$ python systrace.py --time=10 -o
mynewtrace.html sched gfx view wm--time=10 -----------------trace运行...
分类:
其他好文 时间:
2014-05-28 22:26:08
阅读次数:
1421
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3
import urllib2 4 import json 5 import subprocess 6 import threading 7 8
#统计10个最长访问的ip 9 ip_raw =.....
分类:
编程语言 时间:
2014-05-28 21:47:39
阅读次数:
386
1. URLURL(Uniform Resource Locator)
相当于一个文件名在网络范围的扩展。1.1
格式schema://host[:port#]/path/.../[?query-string][#anchor]scheme
指定低层使用的协议(例如:http, https, ftp...
分类:
其他好文 时间:
2014-05-28 21:38:30
阅读次数:
409
HTML: swfupload_ajax_demo 上传| 取消上传
.UploadHandler.ashxpublic ...
分类:
Web程序 时间:
2014-05-28 21:27:08
阅读次数:
293
参数: dict1,
dict2需求:如果dict1和dict2中有不同的key,那么返回这个(key,
dict1[key]);如果dict1和dict2中有相同的key,但是value不同,返回这个(key, dict1[key])实现:def
dict_different_data(first...
分类:
编程语言 时间:
2014-05-28 21:11:48
阅读次数:
385
问题描述使用SDK Manager更新时出现问题Failed to fetch URL
https://dl-ssl.google.com/android/repository/repository-6.xml, reason:
Connection to https://dl-ssl.google...
分类:
移动开发 时间:
2014-05-28 19:02:40
阅读次数:
44763