What command in python can be used to make the string ST = "WORK,IS,DONE" a list ["WORK","IS","DONE"]?
I am trying this but its not working
ST = txt.split(",")
print(ST)```
ST = txt.split(",")
print(ST)
What command in python can be used to make the string ST = "WORK,IS,DONE" a list ["WORK","IS","DONE"]?
I am trying this but its not working
ST = txt.split(",")
print(ST)```
What command in python can be used to make the string ST = "WORK,IS,DONE" a list ["WORK","IS","DONE"]?
I am trying this but its not working
ST = txt.split(",")
print(ST)
lang-py