I need to separate a float from a string
This is an example of the string 2022/02/06 173.876563
I need to separate a float from a string
This is an example of the string 2022/02/06 173.876563
Couldn’t you string.split()
using spaces or something?
split_str = "2022/02/06 173.876563".split()