1. 使用 `\t` 转义序列:
```python
print("姓名\t性别\t年龄")
print("丽丽\t女\t22")
2. 使用 Unicode 字符 `u0009`:
```python
print(u"姓名\u0009性别\u0009年龄")
print(u"丽丽\u0009女\u000922")
3. 使用 `format()` 方法:
```python
name = "姓名"
gender = "性别"
age = "年龄"
print("{}\t{}\t{}".format(name, gender, age))
print("丽丽\t女\t22")
4. 使用第三方库 `tabulate`:
```python
from tabulate import tabulate
data = [
["姓名", "性别", "年龄"],
["丽丽", "女", "22"],
]
print(tabulate(data, tablefmt="grid"))