I'm new to Python, can somebody tell me if I type :
X="alia"
Print (x.Index("a"))
I know it gives me : 0 in result, but how can I get 3 for the second "a" in my variable (x)?
I mean first "a" in "aria" is 0 and second "a" is 3, how can I get 3 and use my index function?