Posts by Carlos Eduardo • 85 points
2 posts
-
1
votes1
answer37
viewsQ: List iteration problem using any() function
I created a script to delete files from a folder and its respective subfolders. These subfolders are named as follows: 1.GERAL_%i with i ranging from 1 to 137. However, I just want to delete the…
pythonasked Carlos Eduardo 85 -
7
votes3
answers312
viewsQ: Transform a string into multiple substrings whose contents are between apostrophes
I am creating a program in C# that reads a text file and one of the lines of that file has the following format: 'Column 1' 'Column 2' 'Column 3' I want to turn that line into one array of strings…