每日練習四:《Python編程快速上手+讓繁瑣工做自動化》第六章實踐項目

編寫一個名爲 printTable()的函數,它接受字符串的列表的列表,將它顯示在組織良好的表格中,每列右對齊。假定全部內層列表都包含一樣數目的字符串。例如,
該值可能看起來像這樣:
tableData = [['apples', 'oranges', 'cherries', 'banana'],
['Alice', 'Bob', 'Carol', 'David'],
['dogs', 'cats', 'moose', 'goose']]app

 

# -*- coding:utf-8 -*-

def printTable(lists):
    len_list = []
    for i in range(len(lists)):
        temp = 0
        for j in range(len(lists[i])):
            if len(lists[i][j]) > temp:
                temp = len(lists[i][j])
        len_list.append(temp)

    for i in range(len(lists[0])):
        for j in range(len(lists)):
            print(lists[j][i].rjust(len_list[j]) + '\t', end='')
            temp = len_list[j]
        print()

tableData = [['apples', 'oranges', 'cherries', 'banana'],
             ['Alice', 'Bob', 'Carol', 'David'],
             ['dogs', 'cats', 'moose', 'goose']]

printTable(tableData)

 

 

結果:函數

相關文章
相關標籤/搜索