gpt4 book ai didi

python - 右对齐python

转载 作者:太空狗 更新时间:2023-10-30 01:40:00 25 4
gpt4 key购买 nike

我如何证明这段代码的输出是正确的?

N = int(input())
case = '#'
print(case)

for i in range(N):
case += '#'
print(case)

最佳答案

您可以使用 format> 来右对齐

N = 10
for i in range(1, N+1):
print('{:>10}'.format('#'*i))

输出

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

您也可以使用 rjust 以编程方式确定右对齐的距离。

for i in range(1, N+1):
print(('#'*i).rjust(N))

关于python - 右对齐python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31389267/

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