String format printing with python3: How to print from array?

做~自己de王妃 提交于 2019-12-13 03:41:50

问题


Python3 has the super string.format printing:

'{} {}'.format('one', 'two')

If my strings are in an array, one way would be to type them out:

a = ['one','two']
'{} {}'.format(a[0],a[1])

But how can I print from an array, instead of having to type out each element?

For example, broken code:

a = ['one','two']
'{} {}'.format(a)

Gives me an expected error: IndexError: tuple index out of range

Of course, playing with ','.join(a) won't help, because it gives one string rather than 2.

(Or is there a way to do this better with f-strings?)


And for full-disclosure, I'm using a raw-string because it has some geometrical significance, and my real code looks like this:

hex_string = r'''
            _____
           /     \
          /       \
    ,----(    {}    )----.
   /      \       /      \
  /   {}    \_____/   {}    \
  \        /     \        /
   \      /       \      /
    )----(    {}    )----(
   /      \       /      \
  /        \_____/        \
  \   {}    /     \   {}    /
   \      /       \      /
    `----(    {}    )----'
          \       /
           \_____/
'''

letters = list('1234567')

print(hex_string.format(letters[0], letters[1], letters[2], letters[3], letters[4], letters[5], letters[6]))

回答1:


Use unpacking to expand the array during the function call.

print(hex_string.format(*letters))

Output:

            _____
           /     \
          /       \
    ,----(    1    )----.
   /      \       /      \
  /   2    \_____/   3    \
  \        /     \        /
   \      /       \      /
    )----(    4    )----(
   /      \       /      \
  /        \_____/        \
  \   5    /     \   6    /
   \      /       \      /
    `----(    7    )----'
          \       /
           \_____/




回答2:


Try unpacking the elements of the list using * as following. For example, printing would look like

print ('{} {}'.format(*a))
# one two



回答3:


Use the * notation for lists:

print(hex_string.format(*letters))


来源:https://stackoverflow.com/questions/56092475/string-format-printing-with-python3-how-to-print-from-array

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!