I have a question and I am actually already struggling with the approach how to tackle it. I have several lists.
name = ['name1','name2', 'name3']
id = ['id1', 'id2', 'id3']
created_at = ['created_at1', 'created_at2', 'created_at3']
The lists have always the same number of element. What I want to do is write them into a MySql database that looks like this:
Name ID Created_at
name1 id1 created_at1
name2 id2 created_at2
name3 id3 created_at3
Any ideas?