python3.x current_question

Posted liuruoqian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.x current_question相关的知识,希望对你有一定的参考价值。

扩散四维过程遇到的问题,暂不能解决,但先收集起来.

‘‘‘

list_str=[‘test‘, None, ‘‘, ‘str‘, ‘ ‘, ‘END‘]

data = filter(lambda str:str and len(str.strip())>0, list_str)
print(‘data: ‘, data, ‘list(data): ‘,list(data))
#为什么filter输出是字符串list

map_data=map(lambda str:str and len(str.strip())>0, list_str)
print(‘map_data:‘, map_data, ‘list(map_data): ‘, list(map_data))
#为什么map这边则是bool类型的list

‘‘‘

以上是关于python3.x current_question的主要内容,如果未能解决你的问题,请参考以下文章

python3自动安装脚本,python3.x与python2.x共存

Python3.x:抢票

Python3.x与Python2.x的差异用法

Python3.x 爬虫

官方python3.x所做的一些更改

python2.x 与 python3.x的区别