How to use prettytable Library to print form and beautify output function in Python
This article mainly introduces Python how to use the prettytable library print form beautification output function related knowledge, the content is detailed and easy to understand, the operation is simple and fast, has a certain reference value, I believe that after reading this Python how to use the prettytable library print form beautification output function article will have a harvest, let's take a look at it.
Pip install prettytable
Add one row at a time
From prettytable import PrettyTable# default header: Field 1, Field 2... # add header table = PrettyTable (["URL", "parameter", "value"]) # add_row add a row of data table.add_row (["http://aaa.com"," raskv "," dEBxcS5j "]) table.add_row ([" http://bbb.com", "su", "626d5633583231794c6d4e6"]) table.add_row (["http://ccc.com",") "pwd", "Ym1WM1gyMXlMbU5"]) # default center alignment # set the "value" column Local left align left initials table.align ["value"] = 'l'print (table)
Add one column at a time
From prettytable import PrettyTabletable = PrettyTable () # add_column add a list of data table.add_column ('= =', ["URL", "parameter", "value"]) table.add_column ('first column', ["http://aaa.com"," raskv "," dEBxcS5j "]) table.add_column ('second column', [" http://bbb.com", "su", "626d5633583231794c6d4e6"]) table.add_column ('third column' ["http://ccc.com"," pwd "," Ym1WM1gyMXlMbU5 "]) # set" column 3 " Right align right initials table.align ["column 3"] = 'r'print (table)
This is the end of the article on "how Python uses the prettytable library to print forms and beautify the output function". Thank you for reading! I believe that everyone has a certain understanding of "Python how to use prettytable library print form beautification output function" knowledge, if you want to learn more knowledge, welcome to follow the industry information channel.