Answers for "WHAT is format used in python"

2

python text fromatting rows

table_data = [
    ['a', 'b', 'c'],
    ['aaaaaaaaaa', 'b', 'c'], 
    ['a', 'bbbbbbbbbb', 'c']
]
for row in table_data:
    print("{: >20} {: >20} {: >20}".format(*row))
Posted by: Guest on November-17-2019
5

How to use .format in python

#The {} are replaced by the vairables after .format
new_string = "{} is string 1 and {} is string 2".format("fish", "pigs")
Posted by: Guest on September-19-2020

Code answers related to "WHAT is format used in python"

Python Answers by Framework

Browse Popular Code Answers by Language