简体   繁体   中英

How do I arrange multiple arguments with string formatting in python

I have this piece of code and I'm trying to figure out how to have multiple arguments in that second set of brackets. I want the number to be right aligned in 6 places and rounded to 2 decimal points. I get the error 'invalid format specifier' every time.

print("{0:>5}   {1:>6, 6.2f}".format(pounds, euros))

If you read the Format Specification Mini-Language , you'll notice that one can only specify the format width once and precision appears after the '.' :

>>> "{0:>5}   {1:>6,.2f}".format(10, 1500.657)
'   10   1,500.66'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM