I have an existing sample data frame (see below).
A B
as 2
df 32
fj 1
I also have two sample lists:
list_1 = ['234', '341', '482']
list_2 = ['111', '2223', '8908']
I want to concat my two lists with my dataframe so that each element in the list is a column.
Desired output:
A B 234 341 482 111 2223 8908
as 2
df 32
fj 1
I've scoured Google on how to do this but could not find anything specific.