how to remove extra spaces in python strinh code example
Example 1: remove extra spaces and empty lines from string python
"\n".join([s for s in code.split("\n") if s])
Example 2: python remove spaces from string
>>> " ".join(s.split())
'Hello World From Pankaj Hi There'