Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

#remove leading and trailing spaces

#Remove leading and trailing spaces
S1 = '   Python rocks   '
print(S1)
print(S1.strip())
print(S1.lstrip())
print(S1.rstrip())
 
PREVIOUS NEXT
Tagged: #leading #trailing #spaces
ADD COMMENT
Topic
Name
5+4 =