上一页 1 2 3 4 5 6 7 ··· 33 下一页

2021年2月3日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-02-03 15:13 猫头唔食鱼 阅读(252) 评论(0) 推荐(0) 编辑

2021年2月2日

摘要: // 求1000以内对称的数字,如22,212, function getNum() { let arr = [] for(var i = 0;i<=1000;i++){ if(i>10){ i = i.toString() i.split('')[0] i.split('')[i.length-1 阅读全文

posted @ 2021-02-02 18:06 猫头唔食鱼 阅读(349) 评论(0) 推荐(0) 编辑

摘要: // 求阶乘 例如 5! function factorial(n) { return n<1 ? 1 : n*factorial(n-1) } console.log(factorial(4)); // 阶乘之和 function getSum(n) { let sum = 0 for(var i 阅读全文

posted @ 2021-02-02 17:28 猫头唔食鱼 阅读(563) 评论(0) 推荐(0) 编辑

摘要: # 求阶乘 def factorial(n): return 1 if n <= 1 else n * factorial(n - 1) print(factorial(5)) # 求阶乘之和 def getSum(n): s = 0 for x in range(1, n + 1): s = s 阅读全文

posted @ 2021-02-02 17:26 猫头唔食鱼 阅读(1380) 评论(0) 推荐(0) 编辑

摘要: python定义函数用def 关键字声明 # 定义函数 和 调用函数 def fun(n): return n print(fun(2)) 阅读全文

posted @ 2021-02-02 17:25 猫头唔食鱼 阅读(106) 评论(0) 推荐(0) 编辑

摘要: 写多了jsfor循环,python的有点不习惯。记录下。 # for 输出 0-9 for a in range(10) : print(a) # for 输出1-10 for a in range(1,11): print(a) 阅读全文

posted @ 2021-02-02 17:22 猫头唔食鱼 阅读(87) 评论(0) 推荐(0) 编辑

摘要: python里面没有三元表达式,所以,采取下面的简写方式: return a if true else b 阅读全文

posted @ 2021-02-02 17:15 猫头唔食鱼 阅读(2555) 评论(0) 推荐(0) 编辑

摘要: 除法: 6 / 3 # 2.0 整除:整除是取商的整数部分 6 // 3 # 2 取模:取模是取余数 6 % 3 # 0 阅读全文

posted @ 2021-02-02 16:58 猫头唔食鱼 阅读(645) 评论(0) 推荐(0) 编辑

2021年2月1日

摘要: $("button").dblclick(function(){ return ; }) 阅读全文

posted @ 2021-02-01 11:40 猫头唔食鱼 阅读(312) 评论(0) 推荐(0) 编辑

摘要: $("body").on("touchend", function(e) { // 判断默认行为是否可以被禁用 if (e.cancelable) { // 判断默认行为是否已经被禁用 if (!e.defaultPrevented) { e.preventDefault(); } } moveEn 阅读全文

posted @ 2021-02-01 10:23 猫头唔食鱼 阅读(132) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 33 下一页