IDLE下载
官网地址:https://www.python.org/downloads/mac-osx/
升级
需要注意在执行链接命令时会提示目录已存在,此时要先删除原来 …
read moreThere are comments.
官网地址:https://www.python.org/downloads/mac-osx/
需要注意在执行链接命令时会提示目录已存在,此时要先删除原来 …
read moreThere are comments.
swift
func measure(title: String!, call: () -> Void) {
let startTime = CACurrentMediaTime()
call()
let endTime = CACurrentMediaTime()
if let title = title {
print("\(title): ")
}
print("Time - \(endTime - startTime)")
}
swift
func doSomeWork() {
measure("Array") {
var ar = [String]()
for i in 0...10000 {
ar.append("New elem \(i)")
}
}
measure("Image") {
let url = NSURL(string: "http://lorempixel …
There are comments.
连接WIFI的时候点开高级设置,把IP和端口填进去。
点击更多,选择双绿高匿的IP
如果不行就换个IP试试
教程是贴吧看到的: http://tieba.baidu.com/p/3548595778
read moreThere are comments.