Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using .format() to format a list with field width arguments

I recently (finally?) started to use .format() and have a perhaps a bit obscure question about it.

Given

res = ['Irene Adler', 35,  24.798] 

and

(1) print('{0[0]:10s} {0[1]:5d} {0[2]:.2f}'.format(res)) (2) print('{:{}s} {:{}d} {:{}f}'.format(res[0], 10, res[1], 5, res[2], .2)) 

work great and both print:

Irene Adler    35 24.80 Irene Adler    35 24.80 

I didn't know that I could deal with lists as in (1) which is neat. I had seen about field width arguments (2) with the old % formatting before.

My question is about wanting to do something like this which combines (1) and (2):

(3) print('{0[0]:{}s} {0[1]:{}d} {0[2]:{}f}'.format(res, 10, 5, .2)) 

However, I am unable to do this, and I haven't been able to figure out from the documentation if this even possible. It would be nice to just supply the list to be printed, and the arguments for width.

By the way, I also tried this (w/o luck):

args = (10, 5, .2) (4) print('{0[0]:{}s} {0[1]:{}d} {0[2]:{}f}'.format(res, args)) 

In both instances I got:

D:\Users\blabla\Desktop>python tmp.py Traceback (most recent call last):   File "tmp.py", line 27, in <module>     print('{0[0]:{}s} {0[1]:{}d} {0[2]:{}f}'.format(res, 10, 5, .2)) ValueError: cannot switch from manual field specification to automatic field numbering  D:\Users\blabla\Desktop>python tmp.py Traceback (most recent call last):   File "tmp.py", line 35, in <module>     print('{0[0]:{}s} {0[1]:{}d} {0[2]:{}f}'.format(res, args)) ValueError: cannot switch from manual field specification to automatic field numbering 

I also tried using zip() to combine the two sequences without luck.

My question is:

Can I specify a list to be printed effectively doing what I was trying to unsuccessfully do in (3) and (4) (clearly if this is possible, I'm not using the right syntax) and if so, how?

like image 539
Levon Avatar asked Jun 04 '12 00:06

Levon


People also ask

What is formatting with the format () method?

The format() method formats the specified value(s) and insert them inside the string's placeholder. The placeholder is defined using curly brackets: {}. Read more about the placeholders in the Placeholder section below. The format() method returns the formatted string.

What does format () mean in Python?

Format Function in Python (str. format()) is technique of the string category permits you to try and do variable substitutions and data formatting. It enables you to concatenate parts of a string at desired intervals through point data format.

What is return by format () method?

format() method returns the formatted string by a given locale, format, and argument. If the locale is not specified in the String. format() method, it uses the default locale by calling the Locale.

What does {: 3f mean in Python?

"f" stands for floating point. The integer (here 3) represents the number of decimals after the point. "%. 3f" will print a real number with 3 figures after the point. – Kefeng91.


1 Answers

The error message

ValueError: cannot switch from manual field specification to automatic field numbering 

pretty much says it all: You need to give explicit field indices everwhere, and

print('{0[0]:{1}s} {0[1]:{2}d} {0[2]:{3}f}'.format(res, 10, 5, .2)) 

works fine.

like image 190
Sven Marnach Avatar answered Sep 26 '22 11:09

Sven Marnach