[work] python list中數字與一個數相乘

This is bill發表於2019-01-14

a=[1,2,3]
[x*2 for x in a]
結果[2,4,6]

相關文章