例2.4 使用列表推導式實現巢狀列表的平鋪
a=[[1,2,3],[4,5,6],[7,8,9]] d=[c for b in a for c in b] print(d) print("學號:2023310143004")