我正在使用Jupyter筆記本,並希望顯示一個pandas DataFrame,它將相同的寬度應用於所有列,所有值居中。實現這一目標的最簡單方法是什麼,無需導入庫?Jupyter中的Pandas DataFrames:等寬和居中的列
import pandas as pd
raw_data = {'regiment': ['Nighthawks', 'Dragoons'],
'company': ['1st', '2nd'],
'name': ['Miller', 'Jacob'],
'preTestScore': [4, 24],
'postTestScore': [25, 94]}
df = pd.DataFrame(raw_data, columns = ['regiment', 'company', 'name', 'preTestScore', 'postTestScore'])
df
請不要張貼代碼爲圖像。 –