摘要:
字典是针对非序列集合而提供的一种数据类型,字典中的数据是无序排列的。 字典的操作 为字典增加一项 dict[key] = value [python] view plain copy students = {"Z004":"John","T002":"Peter"} students Out[23] 阅读全文
摘要:
第一个模块,模拟登陆sina微博,创建weiboLogin.py文件,输入以下代码: [python] view plain copy #! /usr/bin/env python # -*- coding: utf-8 -*- import sys import urllib import url 阅读全文