I have a question about the approach of my problem and if I am understanding or if I'm not if anyone can help me understand it better:
For my course in python I was tasked with having to make a 1 GB file with six columns where
- first column id needs to be auto increment
- second column needs to to be a random integer 1-100
- third and fourth column are random 6 letter strings
- fifth and six columns are a combination of letters and numbers combined.
The output file should have a header row I can use a comma as a delimiter.
My thought process was to use aws use their Linux AMI then download mysql server on to it and create table of 6 columns and then read data into the .csv This is where I get lost am I suppose to use a mysqlconnector to link the table I create to python.