摘要:
今天mac 10.10.5中安装wxpython,安装完wxpython使用import wx导入模块时出现Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/wxPython-3.0.2.0/... 阅读全文
摘要:
#!/usr/bin/python# -*- coding:utf-8 -*-#通过有道翻译来进行内容翻译import urllib2import urllibimport json#---------翻译方法定义 start---------#def transfer( transferStr ,... 阅读全文
摘要:
1 class FileDownload{ // class start 2 3 private $_speed = 512; // 下载速度 4 5 /** 下载 6 * @param String $file 要下载的文件路径 7 * @param St... 阅读全文
摘要:
gitgit的初始化 git init添加一个文档 git add ,添加所有的文件使用git add .提交添加或者修改的文档git commit -m “message”查看状态 git status查看修改内容 git diff filename查看历史纪录 git log版本回退: ... 阅读全文
摘要:
#返回当前的工作目录os.getcwd#print(os.getcwd())#改变一个目录 chdir(path)#列出所有的文件或者目录 listdir(path)#print(os.listdir('/etc'))#创建目录 mkdir(path)#创建多层目录 makedirs(path)#删... 阅读全文
摘要:
1 $arr[$j]) 18 19 $k = $j; 20 21 if ($k != $i) { 22 23 $tmp = $arr[$i]; 24 25 $arr[... 阅读全文