import pandas as pd
# Create the DataFrame
df = pd.DataFrame({'Tamanho': ['P', 'M', 'G', 'GG'],
'Veste': ['34-36', '38-40', '42-44', '46-50']})
# Display the DataFrame
print(df.to_markdown(index=False, numalign="left", stralign="left"))
| Tamanho | Veste |
|:----------|:--------|
| P | 34-36 |
| M | 38-40 |
| G | 42-44 |
| GG | 46-50 |
Aqui está a tabela de medidas
Tamanho | Veste |
---|---|
P | 34-36 |
M | 38-40 |
G | 42-44 |
GG | 46-50 |