Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use prettytable Library to print form and beautify output function in Python

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

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.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report