I'm working in a command line tool that prints keys and values from a dict, and wondering what is the proper way to solve two indentation problems I have:
1st problem:
should be:
short key value
very long key value
when using /t
between the key and the value I get:
short key value
very long key value
2nd problem
should be:
key longggggggggg
gggg value
but I get:
key longggggggggg
gggg value
Thanks for the help! :)