gpt4 book ai didi

python - 创建乘法表?

转载 作者:太空宇宙 更新时间:2023-11-04 06:54:42 25 4
gpt4 key购买 nike

我是编程初学者,正在练习如何使用嵌套 for 循环在 Python 2.7.5 中制作乘法表。这是我的代码

x=range(1,11)
y=range(1,11)
for i in x:
for j in y:
print i*j
pass

嗯,结果是正确的,但它并没有像我希望的那样以方阵形式出现。请帮助我改进代码

最佳答案

你应该打印没有换行符。

x = range(1,11)
y = range(1,11)
for i in x:
for j in y:
print i*j, # will not break the line
print # will break the line

关于python - 创建乘法表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38854223/

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