Answers for "remove trailing zeros in python"

1

how to remove all zeros from a list in python

X = [0,5,0,0,3,1,15,0,12]
X = [i for i in X if i != 0]
Posted by: Guest on February-04-2021
0

drop-trailing-zeros-from-decimal python

>>> s = str(Decimal('1500'))
>>> print s.rstrip('0').rstrip('.') if '.' in s else s
1500
Posted by: Guest on August-14-2020
-1

how to remove trailing zeros in python

a_string = a_string.strip("0")
Posted by: Guest on May-01-2020

Code answers related to "remove trailing zeros in python"

Python Answers by Framework

Browse Popular Code Answers by Language