上一页 1 ··· 204 205 206 207 208 209 210 211 212 ··· 430 下一页

2013年7月23日

python 教程 第十六章、 正则表达式

摘要: 第十六章、 正则表达式 1) 匹配多个表达式 记号 re1|re2 说明 匹配正则表达式re1或re2 举例 foo|bar 匹配 foo, bar 记号 {N} 说明 匹配前面出现的正则表达式N 举例 [0-9]{3} 匹配 2) 匹配单个/多个/范围内字符 记... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(143) 评论(0) 推荐(0)

python 教程 第十五章、 结构布局

摘要: 第十五章、 结构布局 #!/usr/bin/env python #(1)起始行 "this is a module" #(2)模块文档 import sys #(3)模块导入 debug = True ... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(82) 评论(0) 推荐(0)

python 教程 第十四章、 地址薄作业

摘要: 第十四章、 地址薄作业 #A Byte of Python #!/usr/bin/env python import cPickle import os #define the contacts file, list global file_contacts global list_conta... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(82) 评论(0) 推荐(0)

SecureCRT下载/注册/安装镜像文件

摘要: #$language = "VBScript" #$interface = "1.0" ' This automatically generated script may need to be ' edited in order to work correctly. Dim FTP_IP, ... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(174) 评论(0) 推荐(0)

SecureCRT循环检查设备状态

摘要: 1: #$language = "VBScript" 2: #$interface = "1.0" 3: 4: ' This automatically generated script may need to be 5: ' edited in order to w... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(202) 评论(0) 推荐(0)

SecureCRT自动登录Linux并设置时间

摘要: #$language = "VBScript" #$interface = "1.0" crt.Screen.Synchronous = True ' This automatically generated script may need to be ' edited in order t... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(201) 评论(0) 推荐(0)

python 教程 第十三章、 特殊的方法

摘要: 第十三章、 特殊的方法 1) 特殊的方法 __init__(self,...) 这个方法在新建对象恰好要被返回使用之前被调用。 __del__(self) 恰好在对象要被删除之前调用。 __str__(self) 在我们对对象使用print语句或是使用str()的时候调用。 __lt__(s... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(99) 评论(0) 推荐(0)

python 教程 第十二章、 标准库

摘要: 第十二章、 标准库 See Python Manuals ? The Python Standard Library ? 1) sys模块 import sys if len(sys.argv) >> import decimal # Decimal... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(87) 评论(0) 推荐(0)

python 教程 第十一章、 异常

摘要: 第十一章、 异常 1) try/except/else格式 try: s = raw_input('--> ') except EOFError: print 'Why did you do an EOF on me?' except: print 'Er... 阅读全文

posted @ 2013-07-23 17:03 岚之山 阅读(98) 评论(0) 推荐(0)

2013年7月20日

如何导入以前的qq聊天记录

摘要: 作者:朱金灿来源:http://blog.csdn.net/clever101 在新版的qq2013已经可以设置聊天记录的保存路径,但是如何把以前的聊天记录都导入进来呢?今天找到了办法。首先把原来qq安装目录下的\Tencent\QQ\Users文件夹拷贝出来。然后用新安装好的q... 阅读全文

posted @ 2013-07-20 14:53 岚之山 阅读(555) 评论(0) 推荐(0)

上一页 1 ··· 204 205 206 207 208 209 210 211 212 ··· 430 下一页

导航