I am simply trying to assign a slice of a string to another string so it is easy to manipulate in the script. I can print the slice:
print full_path[startIndex:endIndex+5];
but assigning it to another string renders this exception in eclipse: module not in the pythonpath
modulePath=full_path[startIndex:endIndex+5];
I thought full_path[startIndex:endIndex+5] returns string, but I am not sure.
Am I not declaring the string correctly, is it not the string that being returned?
Please help. Thank you. Vicki