---How To Find Part Of A String!!---

I realy need to know how I can remove the first two letters of a string!
IE: from “Blah” to “ah”

thanks in advance,

a = "asdf" 
print a[2:]

it’s all in the python tutorial on python.org

Thanks :smiley: