码迷,mamicode.com
首页 > 编程语言 > 详细

匿名函数:python2和python3的区别

时间:2017-10-01 12:28:34      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:http   code   images   python   fun   inpu   func   一个   logs   

 1 #coding=utf-8
 2 
 3 def test(a,b,func):
 4     result = func(a,b)
 5     return result
 6 #python2中的方式
 7 #func_new = input("请输入一个匿名函数:")
 8 
 9 #python3中的方式
10 func_new = input("请输入一个匿名函数:")
11 func_new = eval(func_new)
12 
13 num = test(11,22,func_new)
14 print(num) 


技术分享

技术分享

匿名函数:python2和python3的区别

标签:http   code   images   python   fun   inpu   func   一个   logs   

原文地址:http://www.cnblogs.com/fengpiaoluoye/p/7616850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!