remove spaces from string python
s = '  Hello   World     From  Pankaj  tnrt  Hi       There        '
>>> s.replace(" ", "")
'HelloWorldFromPankajtnrtHiThere'
                                
                            remove spaces from string python
s = '  Hello   World     From  Pankaj  tnrt  Hi       There        '
>>> s.replace(" ", "")
'HelloWorldFromPankajtnrtHiThere'
                                
                            python convert remove spaces from beginning of string
## Remove the Starting Spaces in Python
 
string1="    This is Test String to strip leading space"
print (string1.lstrip())
                                
                            delete spaces in string python
>>> s.replace(" ", "")
                                
                            trimming spaces in string python
a = "      yo!      "
b = a.strip() # this will remove the white spaces that are leading and trailing
                                
                            python remove space from end of string
>>> "    xyz     ".rstrip()
'    xyz'
                                
                            remove spaces in string python
words = "   test     words    "
# Remove end spaces
def remove_end_spaces(string):
    return "".join(string.rstrip())
# Remove first and  end spaces
def remove_first_end_spaces(string):
    return "".join(string.rstrip().lstrip())
# Remove all spaces
def remove_all_spaces(string):
    return "".join(string.split())
# Remove all extra spaces
def remove_all_extra_spaces(string):
    return " ".join(string.split())
# Show results
print(f'"{words}"')
print(f'"{remove_end_spaces(words)}"')
print(f'"{remove_first_end_spaces(words)}"')
print(f'"{remove_all_spaces(words)}"')
print(f'"{remove_all_extra_spaces(words)}"')
                                
                            Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us