>v = "64x43x12" -> '64x43', '12' > > How split it by the las 'x'? [snip]
>>>v = "64x43x12"
>>>temp = v.split("x")[-1:]
>>>print temp
['12']
that's the best I can do for now.
HTH,
-Luke
_______________________________________________
Tutor maillist - [email protected]
http://mail.python.org/mailman/listinfo/tutor
