gpt4 book ai didi

Python map() 函数遍历 'None' 元素

转载 作者:行者123 更新时间:2023-11-28 20:43:08 24 4
gpt4 key购买 nike

我编写了一个简单的 map() 函数,该函数遍历列表并打印列表中尽可能多的“*”。我发现我的代码有一个小问题,我在输出中看到一个额外的 'None'。有人可以帮我调试这个问题吗?

Problem Statement:
-----------------
Define a procedure histogram() that takes a list of integers and prints a
histogram to the screen. For example, histogram([4, 9, 7]) should print the
following:

****
*********
*******

源代码

def print_asterisks(num):
print ''.join('*' for i in xrange(num))

def histogram(s):
map(print_asterisks, s)

def main():
# Test inputs
print histogram([4,7,5])


if __name__ == "__main__":
import sys
sys.exit(main())

输出

****
*******
*****
None

最佳答案

在这一行中:

print histogram([4,7,5])

您正在打印 histogram 函数的返回值,即 None。你只需要调用函数:

histogram([4,7,5])

关于Python map() 函数遍历 'None' 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29225076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com