1 2 3 4 5 6 | test = "hello,how are you?I am fine,thank you. And you?" print [t for x in test.split(",") for y in x.split(".") for z in y.split("?") for t in z.split()] |
dGVzdCA9ICJoZWxsbyxob3cgYXJlIHlvdT9JIGFtIGZpbmUsdGhhbmsgeW91LiBBbmQgeW91PyIKCnByaW50IFt0IGZvciB4IGluIHRlc3Quc3BsaXQoIiwiKQogICAgICAgICBmb3IgeSBpbiB4LnNwbGl0KCIuIikKICAgICAgICAgZm9yIHogaW4geS5zcGxpdCgiPyIpCiAgICAgICAgIGZvciB0IGluIHouc3BsaXQoKV0=
-
upload with new input
-
result: Success time: 0.03s memory: 6356 kB returned value: 0
['hello', 'how', 'are', 'you', 'I', 'am', 'fine', 'thank', 'you', 'And', 'you']


