问题 [Python 3.1] Edit: mistake in the original code. I need to print a table. The first row should be a header, which consists of column names separated by tabs. The following rows should contain the data (also tab-separated). To clarify, let's say I have columns "speed", "power", "weight". I originally wrote the following code, with the help from a related question I asked earlier: column_names = ['speed', 'power', 'weight'] def f(row_number): # some calculations here to populate variables speed