摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#http://www.cnblogs.com/BeginMan/p/3223356.html#递归2'非递归方式'sum=0#没有sum=0,会出现如下错误提示'''Traceback (most recent c... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#递归函数 #508#定义:#在函数内部,可以调用其他函数,如果一个函数在内部调用其自身,这个函数就是递归函数#递归'''(1)递归就是在过程或函数里调用自身【调用自身】(2)在使用递归策略时,必须有一个明确的递归... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#http://apistore.baidu.com/apiworks/servicedetail/113.html#身份证查询APIimport urllib,json,urllib2#接口地址url='http:... 阅读全文
摘要:
# -*- coding: cp936 -*-#python 27#xiaodeng#http://apistore.baidu.com/apiworks/servicedetail/715.html#短信接口APIimport urllib,json,urllib2#接口地址url='http:/... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#性感女神图片爬虫import urllib,urllib2,jsonurl='http://apis.baidu.com/dajuncloud/goddess/goddesses?' #注意?号不要漏掉data=... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#调用网易有道词典apiimport urllibimport jsonclass Youdao(): def __init__(self,word): self.url='http://fany... 阅读全文