Hi I am trying to understand how the string formatting works with float:
I have tried
>>> print("%s %s %s %s %-9.10f"%("this","is","monday","morning",56.3648)) it gives output of
this is monday morning 56.3648000000 however this,
>>> print("%s %s %s %s %10f"%("this","is","monday","morning",56.3648)) gives output of
this is monday morning 56.364800 what is causing the difference?