ob-vaults/Phoenix/Python/remove space in text in python.md
2024-09-12 17:54:01 +03:30

770 B

status: #doc Tags: #python #programming links: python python/text Date: 2023-05-01


remove space in text in python

we use strip() for it , its a [value-returning function] so remember to store the value

remove just space

in default state strip() just remove space before and after words for example

txt = "     banana     "  
  
x = txt.strip()  
  
print("of all fruits", x, "is my favorite")

remove other characters

syntax

string.strip(characters)
  • example
txt = ",,,,,rrttgg.....banana....rrr"  
  
x = txt.strip(",.grt")  
  
print(x)

References