python获得用户输入的一个数字,增加数字的千位分隔符,以 30 字符宽度居中输出
时间: 2023-04-04 07:03:09 浏览: 378
将一个数间隔输出
您好,可以使用以下代码实现:
num = input("请输入一个数字:")
num_with_commas = format(int(num), ",")
output = f"{num_with_commas:^30}"
print(output)
这段代码会先让用户输入一个数字,然后使用 format 函数给数字增加千位分隔符。接着使用 f-string 将数字居中输出,并且限制输出宽度为 30 个字符。
阅读全文