What's the quickest/cleanest way to remove the first word of a string? I know I can use split
and then iterate on the array to get my string. But I'm pretty sure it's not the nicest way to do it.
Ps: I'm quite new to python and I don't know every trick.
Thanks in advance for your help.