Answers for "addition removes zeros 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
-1

how to add extra zeros after decimal in python

>>> format(2.0, '.6f')
'2.000000'
Posted by: Guest on June-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language