delete space in string python
.replace(" ", "")
remove spaces from string python
s = ' Hello World From Pankaj tnrt Hi There '
>>> s.replace(" ", "")
'HelloWorldFromPankajtnrtHiThere'
how to remove spaces in string in python
sentence = ' hello apple '
sentence.strip()
>>> 'hello apple'
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())
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