所以,我在玩.csv文件,学习如何阅读和呈现信息。我把结果打印到终端,但随着我打印的内容越来越多,我有一堵墙的打印语句,只是越来越长。有什么办法来清理这一点吗?还有,请忽略我的粗俗数据。我生成的csv在凌晨3点左右。
print("")
print(people[owner]["first_name"], end = "")
print(" ", end="")
print(people[owner]["last_name"], end="")
print(" owns the most buttplugs with a total of ",end="")
print(people[owner]["plugs"], end="")
print(" buttplugs!")
print("That's ",end="")
print(people[owner]["plugs"] - round(get_avg(people)),end="")
print(" more buttplugs than the average of ",end="")
print(round(get_avg(people)),end="")
print("!")
print("")
# Result: Sonnnie Mallabar owns the most buttplugs with a total of 9999 buttplugs!
# That's 4929 more buttplugs than the average of 5070
3条答案
按热度按时间m4pnthwp1#
印刷品
vuktfyat2#
你可以把它们合并成两个print语句,每个逗号会照顾到中间的一个空格,你必须把数字转换成字符串
或2个使用f字符串语句
q9yhzks03#
f-strings是您正在寻找的。它们允许您以一种非常可读的方式轻松地格式化代码。例如: