I know it's possible to name columns when using DataFrame.read_csv() in pandas by passing the optional names = ['X', 'Y', 'Z', ...] parameter. However, my question is can you name only the first X columns and the rest get autonamed?
Basically, I have a csv with 23 columns that I want to name, and a further 1023 columns that I need to keep in the DataFrame but don't care about what they're called. Here's an image to illustrate the requirement:
