摘要:
图片链接 Set as Home Page1.文字型:设为首页范例:设为首页2.按钮型:离开时自动提示设为首页 -------------------------------------------------------------打开页面时自动弹出窗口询问是否设为首页将以下代码放在之间:再将下面代码加入内:onload="myhomepage();"即: ------------------------------------------------------------------------------鼠标指向时提示设为首页将下列代码插入区中: 设... 阅读全文
摘要:
#callback 判断是否存在import matchx = 1y = math.sqrtcallable(x)#Falsecallable(y)#True#函数def fib(num): result = [0,1] for i in range(num-2): result.append(result[-2],result[-1]) return result;fibs(10)#[0,1,1,2,3,5,8,13,21,34]#函数文档def square(x): 'Calcutates the square of the number x'... 阅读全文