python remove spaces
string=' t e s t '
print(string.replace(' ',''))
python remove spaces
string=' t e s t '
print(string.replace(' ',''))
string without space pythonm
import re
string = ' Hello World From Pankaj tnrtHi There '
print('Remove all spaces using RegEx:n', re.sub(r"s+", "", string), sep='') # s matches all white spaces
print()
print('Remove leading spaces using RegEx:n', re.sub(r"^s+", "", string), sep='') # ^ matches start
print()
print('Remove trailing spaces using RegEx:n', re.sub(r"s+$", "", string), sep='') # $ matches end
print()
print('Remove leading and trailing spaces using RegEx:n', re.sub(r"^s+|s+$", "", string), sep='') # | for OR condition
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