[Solved] Modify string representation of data in Python


Or, as another alternative,

>>> data="105.00000031 105.0000041"
>>> print('\n'.join(data.split()))
105.00000031
105.0000041

Handles irregular spaces gracefully.

5

solved Modify string representation of data in Python