Gabungkan dua array python dengan tiga satu

>>> list one=[1,2,3]
>>> list two=[4,5,6]
>>> list three=[7,8,9]

the joined list={[list one]+[list two]+[list three]}
Alert Angelfish