I created an CSV file as a sample where I have @handles. (Twitter handles) For privacy reasons I need to remove each handle - for example @johnny, @rose, @lucy.
This is what I have so far..... but I'd like to replace the whole handle on each line with an x.
file = open('./ExcelTest.csv', 'r')
for line in file:
#temp = line.find("@")
line.replace("@"," ")
print(line)
Please help! THANKS SO MUCH!