コード例 #1
0
def show_table(table):
    """
    Display a table

    Args:
        table (list): list of lists to be displayed.

    Returns:
        None
    """
    title_list = ['ID', 'Month', 'Day', 'Year', 'Type', 'Amount']
    common.show_every_table(table, title_list)
コード例 #2
0
def show_table(table):
    """
    Display a table

    Args:
        table (list): list of lists to be displayed.

    Returns:
        None
    """
    title_list = ['ID', 'Name', 'Email', 'Subscribed']
    common.show_every_table(table, title_list)
コード例 #3
0
def show_table(table):
    """
    Display a table

    Args:
        table (list): list of lists to be displayed.

    Returns:
        None
    """

    title_list = ['ID', 'Name', 'Manufacturer', 'Purchase Year', 'Durability']
    common.show_every_table(table, title_list)
コード例 #4
0
def show_table(table):
    """
    Display a table

    Args:
        table (list): list of lists to be displayed.

    Returns:
        None
    """

    title_list = ['ID', 'Title', 'Manufacturer', 'Price', 'In stock']
    common.show_every_table(table, title_list)
コード例 #5
0
def show_table(table):
    """
    Display a table

    Args:
        table (list): list of lists to be displayed.

    Returns:
        None
    """

    title_list = ['ID', 'Name', 'Birth year']
    common.show_every_table(table, title_list)