逗号分隔列表格式

时间:2020-01-25 22:02:13

标签: python list format

我正在寻找在列表中创建20个随机数的列表的方法 但希望以逗号分隔的方式打印这些数字的结果。 当我想要格式化Prinicipal列表时出现错误 下面。

res = ('{:,}'.format(Principal))
TypeError: unsupported format string passed to list.__format__.

我该如何解决?

def inventory(i,j):
    import random
    Amount = random.choices([x for x in range(i,j+1) if x%25 == 0],k=20)
    return Amount

def main():
    Principal = inventory(100000, 1000000)
    res = ('{:,}'.format(Principal))
    print('\nInventory:\n', + str(res))
    minAmt = min(Principal)
    maxAmt = max(Principal)

    res1 = ('{:,}'.format(minAmt))
    res2 = ('{:,}'.format(maxAmt))
    print('\nMin amount:' + str(res1))
    print('\nMax amount:' + str(res2))

if __name__ == '__main__':
    main()

2 个答案:

答案 0 :(得分:0)

您正在寻找str.join。例如

res = ','.join(map(str, Principal))

此外,以下不是有效的语法:

print('\nInventory:\n', + str(res))

其中的+是非法的。

答案 1 :(得分:0)

Principal是金额列表,而,不是列表的格式说明符。分别打印每个金额:

import random

def inventory(i,j):
    return random.choices([x for x in range(i,j+1) if x%25 == 0],k=20)

amounts = inventory(100000, 1000000)
print('\nInventory:\n')
for amount in amounts:
    print(f'{amount:,}')

print(f'\nMin amount: {min(amounts):,}')
print(f'\nMax amount: {max(amounts):,}')

输出:

Inventory:

283,250
904,600
807,800
297,850
314,000
557,450
167,550
407,475
161,550
684,225
787,025
513,975
252,750
217,500
394,200
777,475
621,575
888,625
895,525
846,650

Min amount: 161,550

Max amount: 904,600