Forum: Python Aug 13th, 2008 |
| Replies: 4 Views: 1,751 Hello all,
Can any one explain me whats the main different between them two data structures. I have been like working on them quite lot now. When do we use tuples and when do we use list. Any... |
Forum: Python Jul 24th, 2008 |
| Replies: 4 Views: 661 Well, why dont you get a good IDE and start coding in there. I IDE which I have been using is pyscripter. Thats a cool IDE with lots of updates now and then.
ssharish |
Forum: Python Jun 27th, 2008 |
| Replies: 2 Views: 458 May be you should be looking for something like this
from string import split, lower
import os, string
strOriginal = "God Godess Brother Sister Family"
strFinal = []
strTofind =... |