摘要:
try: import urllib.request as urllib2 except ImportError: import urllib2 response = urllib2.urlopen("http://www.baidu.com") print(response.getcode()) response = urllib2.urlopen('http://www.... 阅读全文
摘要:
1.list list是一种有序的集合 例子:classmates = ['Michael', 'Bob', 'Tracy']; 方法:1. len len(classmates) //3 2.append classmates.append('Adam') //['Michael', 'Bob', 阅读全文