Automatic numbering increases costs
This code insight counts one violation each a string contains empty format replacement fields. bad print "{} is {}".format("life","hard") good print "{0} is {1}".format("life","hard")Why you should care
If you are not numbering your replacement fields {} in your format string, Python auto-numbers them. For example, using "{} {}" is interpreted as {0} {1}. This is correct code, but is hard to read if you use a large number of parameters. If a format string is particularly long, it is difficult to tell which replacement fields relate to which argument of your format string. Especially if code is refactored, unnumbered replacement fields are often not in sync with the arguments of the format string.Business Impacts
It is recommended to avoid these in order to ensure the code is more readable and cost effective.
[nz_btn text="Cost" target="_self" animate="false" animation_type="ghost" color="green" size="small" shape="rounded" type="normal" hover_normal="opacity" hover_ghost="fill" link="http://casthighlight.wpengine.com/category/product/indicators-methodology/innovation/" icon="icon-office"]
CAST recommendations
References
https://www.quantifiedcode.com/knowledge-base/maintainability/Explicitly%20number%20replacement%20fields%20in%20a%20format%20string/3aSZNLMu .About CAST and Highlight’s Code Insights
Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.
For reference only. For the complete details please refer the original article
https://doc.casthighlight.com/alt_automaticnumbering-automatic-numbering-increases-costs/
https://doc.casthighlight.com/alt_automaticnumbering-automatic-numbering-increases-costs/
Comments