??这里,才 python 前沿。可惜是英文原版。所以,我要练习英文阅读。🧐🧐
??自学并不是什么神秘的东西,一个人一辈子自学的时间总是比在学校学习的时间长,没有老师的时候总是比有老师的时候多。
????????????—— 华罗庚
练习:班里有人和我同生日难吗?(概率probability、蒙特卡洛随机模拟法)
- 题目
- 填空
- 代码运行效果
- 完整代码
回首页
题目
回首页
填空
- hight_tpl
- get(hight, 0)
for hight in hight_tpl:
summary[hight] = summary.get(hight, 0) + 1
- items()
for hight, freq in summary.items():
print(f"{hight:>19}{' ':>4}{color(str(freq), 'f_green')}")
回首页
运行效果
回首页
完整 Python 代码
??我的解题思路,已融入代码注释,博文中就不再赘述。
(如果从语句注释不能清楚作用,请评论区留言指教和探讨。🤝)
'''
filename: /sdcard/qpython/tem.py
梦幻精灵_cq的炼码场
'''
from mypythontools import color, wait, cut_line
import random
from math import ceil
hight_tpl = (158, 163, 165, 168, 162, 163, 163,
165, 165, 163, 161, 163, 168, 173)
summary = {}
for hight in hight_tpl:
summary[hight] = summary.get(hight, 0) + 1
print(f"\n\n{' ':16}身高:频度")
for hight, freq in summary.items():
print(f"{hight:>19}{' ':>4}{color(str(freq), 'f_green')}")
wait()
回首页
上一篇:?均衡办公室人数
下一篇:?
我的HOT博:
推荐条件
点阅破千
回首页
精品文章:
来源:老齐教室
回首页
好文力荐:
CSDN实用技巧博文:
|