Split String into Array using Python September 21, 2020 Python 0 Comments 395 Views split method text = 'First,Second,Third' data = text.split(',') print(data[0] + ' ' + data[1] + ' ' + data[2])
Leave a Comment
Cancel reply