Answers for "python string format method"

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
-3

Python - Format - Strings

age = 36
txt = "My name is John, I am " + age
print(txt)
Posted by: Guest on February-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language