So I'm trying to get my month numbers to be zero padded from the left meaning {01, 02, 03, ..., 10, 11, 12}.
I thought to do so with formatting but after searching the internet I wonder if formatting really adds a zero or if I'll only see a zero when printed.
Either way, what I was trying:
months.style.format({'Test': '{:0>2}'})
print(months)
When I use this code it prints the 'Test' column without the format, why is this? I use Jupyter notebook and when I don't use the print function, he displays the data with the right format. Thank you