python、js、php区别---6、函数相关
一、总结
一句话总结:
python、js、php函数的逻辑都是一样的,具体写法稍有区别,python里面有匿名函数(lambda函数),lambda函数和js里面的箭头函数比较像
""" 1、函数 2、匿名函数 """ # 1、函数 # def my_max(a,b): # if(a>=b): # return a # else: # return b # print(my_max(20,10)) # 2、匿名函数 # sum = lambda a,b: a+b # print(sum(4,5))
二、函数相关
博客对应课程的视频位置:6、函数相关
https://www.fanrenyi.com/video/33/301
1、python
""" 1、函数 2、匿名函数 """ # 1、函数 # def my_max(a,b): # if(a>=b): # return a # else: # return b # print(my_max(20,10)) # 2、匿名函数 # sum = lambda a,b: a+b # print(sum(4,5))
2、js
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> /* 1、函数 2、箭头函数 */ //1、函数 // function sum1(a,b){ // return a+b; // } // console.log(sum1(3,4)); // let sum2=function(a,b){ // return a+b; // }; // console.log(sum2(5,7)); //2、箭头函数 // let sum3=(a,b)=>a+b; // console.log(sum3(15,8)); </script> </body> </html>
3、php
<?php /* 1、函数 */ function sum1($a, $b) { return $a + $b; } echo sum1(3, 12);