Yahoo Finance API Stock Anlyser (Need to separate a float out of a string)

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()
1 Like