已采纳回答 / 慕侠1087615
python 2.1以上是自带__future__模块的,为确认你的python中含有这个模块,可以尝试在python交互模式下输入“from __future__ import unicode_literals”,如果没有报错的话,说明你的python是含有该模块的补充说明:Python提供了__future__模块,把下一个新版本的特性导入到当前版本,于是我们就可以在当前版本中测试一些新版本的特性。为了适应Python 3.x的新的字符串的表示方法,在2.7版本的代码中,可以通过unicode_li...
2018-12-29
最赞回答 / 白白白_就会晒黑的
def add(x,y,f): return f(x)+f(y) #add(-5,9,abs) print add(-5,9,abs)在cmd里输入python命令,是直接交互,实时获得结果。如果用pycharm输入,要主动写print
2018-12-29
def prod(x, y):
return x * y
print(reduce(prod,[2, 4, 5, 7, 12]))
return x * y
print(reduce(prod,[2, 4, 5, 7, 12]))
2018-12-27
def kc(x, y):
return x*y
def calc_prod(lst):
def cacut():
return reduce(kc, lst)
return cacut
f = calc_prod([1, 2, 3, 4])
print f()
return x*y
def calc_prod(lst):
def cacut():
return reduce(kc, lst)
return cacut
f = calc_prod([1, 2, 3, 4])
print f()
2018-12-26
import math
def is_sqr(x):
return x%math.sqrt(x)==0
print filter(is_sqr, range(1, 101))
def is_sqr(x):
return x%math.sqrt(x)==0
print filter(is_sqr, range(1, 101))
2018-12-26
def format_name(s):
return s[0].upper() + s[1:].lower()
s = ['adam', 'LISA', 'barT']
print (map(format_name, ['adam', 'LISA', 'barT']))
return s[0].upper() + s[1:].lower()
s = ['adam', 'LISA', 'barT']
print (map(format_name, ['adam', 'LISA', 'barT']))
2018-12-26
最赞回答 / PETERNEMONO
这个是用户自己定义的的一个内部函数,不是系统规定的,是用户自己定义的。你可以定义它其他符合Python命名规则的名称。。。这部分的逻辑是:f = calc_prod([1, 2, 3, 4]),等号左边的是标签f,等号右边是calc_prod([1, 2, 3, 4])。等号的作用是将等号右边的结果赋值给等号左边,等号右边的结果是函数calc_prod([1, 2, 3, 4])的返回值,也就是lazy_prod;这个式子运行结束之后,将f这个标签贴给lazy_prod,当执行f()时等同于执行lazy_...
2018-12-25
def cmp_ignore_case(s1, s2):
if s1.lower() > s2.lower():
return 1
if s1.lower() < s2.lower():
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
if s1.lower() > s2.lower():
return 1
if s1.lower() < s2.lower():
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2018-12-20
import math
def is_sqr(x):
return x % (math.sqrt(x)) == 0
print filter(is_sqr, range(1, 101))
def is_sqr(x):
return x % (math.sqrt(x)) == 0
print filter(is_sqr, range(1, 101))
2018-12-20