Final answer:
To create a table in Python without the tabulate library, you can use string formatting methods, with list comprehensions to align and fix column width, resulting in a neatly printed table in the console.
Step-by-step explanation:
To create a table in Python without using the tabulate library, you can rely on plain string formatting. Here's a simple example of how to construct a table using Python's string formatting methods:
headers = ["Name", "Age", "City"]
data = [
["Alice", 24, "New York"],
["Bob", 19, "San Francisco"],
["Charlie", 30, "Boston"]
]
print(" ".join(f"{header:<10}" for header in headers))
for row in data:
print(" ".join(f"{str(item):<10}" for item in row))
This code uses list comprehensions with string formatting, specifying a fixed width for each column (
<10 indicating left-aligned with a width of 10 characters). Run this code to see your table print out neatly in the console.