I have a group of files (A.txt, AA.txt etc) in the form
A.txt :
A,45,56,78,98,11,23
A,98,90,33,76,30,40
AA.txt :
AA,65,76,34,76,98,12
AA,12,76,33,76,33,89
How can I quickly remove the symbol column (A,AA) from all these files using Python?
(I want to use python because the number of txt files is 3200)
Thank you.