Print results in MySQL format with Python

前端 未结 5 520
-上瘾入骨i
-上瘾入骨i 2020-12-05 01:21

What is the easiest way to print the result from MySQL query in the same way MySQL print them in the console using Python? For example I would like to get something like tha

5条回答
  •  星月不相逢
    2020-12-05 01:41

    Use prettytable

    x = PrettyTable(["City name", "Area", "Population", "Annual Rainfall"])
    x.set_field_align("City name", "l") # Left align city names
    x.set_padding_width(1) # One space between column edges and contents (default)
    x.add_row(["Adelaide",1295, 1158259, 600.5])
    x.add_row(["Brisbane",5905, 1857594, 1146.4])
    x.add_row(["Darwin", 112, 120900, 1714.7])
    x.add_row(["Hobart", 1357, 205556, 619.5])
    x.add_row(["Sydney", 2058, 4336374, 1214.8])
    x.add_row(["Melbourne", 1566, 3806092, 646.9])
    x.add_row(["Perth", 5386, 1554769, 869.4])
    print x
    
    +-----------+------+------------+-----------------+
    | City name | Area | Population | Annual Rainfall |
    +-----------+------+------------+-----------------+
    | Adelaide  | 1295 |  1158259   |      600.5      |
    | Brisbane  | 5905 |  1857594   |      1146.4     |
    | Darwin    | 112  |   120900   |      1714.7     |
    | Hobart    | 1357 |   205556   |      619.5      |
    | Sydney    | 2058 |  4336374   |      1214.8     |
    | Melbourne | 1566 |  3806092   |      646.9      |
    | Perth     | 5386 |  1554769   |      869.4      |
    +-----------+------+------------+-----------------+
    

提交回复
热议问题