我有一个清单:
my_list = [1, 2, 3, 4, 5]
如何将每个元素乘以my_list5?输出应该是:
my_list
[5, 10, 15, 20, 25]
python list
list ×1
python ×1