I am comparing 2 txt files that are ls -R of the etc directory in a linux system. I compared the 2 files using difflib.differ and got this list as my result (i put the dots to keep the list short in here):
result = [' etc:\n', ' ArchiveSEL\n', ' HOSTNAME\n', ' RMCPUser\n', ...,
' qcleaner\n', '+ extraFile\n', ' rc.d\n', '+ extraFile2\n', ...,
' resolv.conf\n', ' wu-ftpd\n']
I want to be able to take the strings with the '+' sign out to do something else. how do i manipulate the list? in the example above, i want to be able to get this string "extraFile" and "extraFile2".
Thanks to all the people who posted solutions. It helps a lot and I am grateful :)
Here's what I did to get the string I wanted:
newresult = [file[2:-1] for file in result if file.startswith('+')]
to print out the strings:
for i in range (len(newresult)):
print newresult[i]
THANKS~!!! :)