Answers for "strip list python"

0

how to strip a list in python

list1 = ["a  ", "  b ", " c"]

[i.strip() for i in list1] # ['a', 'b', 'c']
Posted by: Guest on August-23-2020
0

strip function in python

lol = '     lol   '
print(lol)
# normal output =      lol   
lol = '     lol    ' 
print(lol.strip)
# strip output = lol
# Cool right
Posted by: Guest on May-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language