Python Forum
how do one remove whitespace from a list?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how do one remove whitespace from a list?
#2
You can use a regular expression

import re

pre_ratio = re.sub(r'\s', '', pre_ratio)
Reply


Messages In This Thread
RE: how do one remove whitespace from a list? - by Larz60+ - Nov-29-2017, 08:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  unable to remove all elements from list based on a condition sg_python 3 518 Jan-27-2024, 04:03 PM
Last Post: deanhystad
  Remove numbers from a list menator01 4 1,418 Nov-13-2022, 01:27 AM
Last Post: menator01
  Remove empty keys in a python list python_student 7 3,155 Jan-12-2022, 10:23 PM
Last Post: python_student
  Remove an item from a list contained in another item in python CompleteNewb 19 5,932 Nov-11-2021, 06:43 AM
Last Post: Gribouillis
  .remove() from a list - request for explanation InputOutput007 3 2,299 Jan-28-2021, 04:21 PM
Last Post: InputOutput007
  Style question on adherence to PEP 8 with whitespace near an "=" sign nilesh 6 4,041 Jan-12-2021, 11:11 PM
Last Post: snippsat
  Remove double quotes from the list ? PythonDev 22 9,123 Nov-05-2020, 04:53 PM
Last Post: snippsat
  Remove specific elements from list with a pattern Xalagy 3 2,758 Oct-11-2020, 07:18 AM
Last Post: Xalagy
  How to remove dict from a list? Denial 7 3,076 Sep-28-2020, 02:40 PM
Last Post: perfringo
  Superfluous whitespace found? CaptainCsaba 2 21,317 Mar-19-2020, 09:04 AM
Last Post: ak52

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020