I am very new to python and I have a basic question to make.
I have a string and I want to get some of its parts and store them as separate strings.
My string looks something like this :
label = "1000 likes 200 comments 150 shares"
What I want is to have 3 string like this :
likes = 1000
comments = 200
shares = 150
Thank you all in advance