gpt4 book ai didi

python - 如何让 python 在哈希中打印右箭头?

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

我希望 python 按以下顺序打印我的哈希值:

  1. row = #
  2. row = ##
  3. row = ###
  4. row = ####

然后往下,所以:

  1. row = ###
  2. row = ##
  3. row = #

我已经成功地使用以下代码完成了前 4 行:

c = ("#")
n = 0
row = (c * 4 + "\n")

for c in row:
n = n + 1
print(c * n)

这是我的预期输出:

#
##
###
####
###
##
#

这是实际的输出:

#
##
###
####

最佳答案

用一个循环

for i in range (-3, 4): print('#'*(4-abs(i))) 

如果要概括

nmax = int(input('Max number of hash marks? '))
for i in range (1-nmax, nmax): print('#'*(nmax-abs(i)))

关于python - 如何让 python 在哈希中打印右箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56599766/

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