Four easy step:
You can click on the default unformatted code above to see the effect.
Python formmatter is beautify your minified python code, this make your python code more readable.
It also makes it easier for developers to read other developers codes as well.
Before
def example_function(arg1,arg2):
result=arg1+arg2
print("The result is",result)
Formatted codedef example_function(arg1,arg2):
result=arg1+arg2
print("The result is",result)