说明
《Python 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)编写一个 Python 函数,传入一个具有统计性质的字典,打印一个横向的直方图。即:
info = {'a':2, 'b':5, 'c':10, 'd':3, 'e':1}
histogram(info)
'''
▉
▉
▉
▉
▉
▉ ▉
▉ ▉
▉ ▉ ▉
▉ ▉ ▉ ▉
▉ ▉ ▉ ▉ ▉
a b c d e
'''
代码如下:
def histogram(data: dict):
max_ = max(data.values())
for i in range(max_, 0, -1):
for k, v in data.items():
if v >= i:
print('▉', end=' ')
else:
print(' ', end=' ')
print()
print(*data.keys())
info = {'a':2, 'b':5, 'c':10, 'd':3, 'e':1}
histogram(info)
'''
▉
▉
▉
▉
▉
▉ ▉
▉ ▉
▉ ▉ ▉
▉ ▉ ▉ ▉
▉ ▉ ▉ ▉ ▉
a b c d e
'''
主要知识点有字典的值视图、项视图;range 的用法等等。
如果要打印横向直方图,可以参考 Python习题 139:打印横向直方图 。
(完)
更新时间:2024-08-16 22:43:01 标签:python 习题 直方图 打印