gpt4 book ai didi

python - 你如何使用嵌套的 for 循环在 python 中打印出以下模式?

转载 作者:太空宇宙 更新时间:2023-11-03 12:36:03 26 4
gpt4 key购买 nike

如何使用嵌套 for 循环在 python 中打印出以下模式?因此您不必编写 7 个打印函数来打印图案。

1

0 1

1 0 1

0 1 0 1

1 0 1 0 1

0 1 0 1 0 1

1 0 1 0 1 0 1

最佳答案

你可以这样做:

s = ''
for i in range(1, 8):
s = str(i % 2) + s
print(s)

关于python - 你如何使用嵌套的 for 循环在 python 中打印出以下模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52594304/

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