#PF103. 数字翻倍

数字翻倍

题目描述

编写一个程序,将列表numbers[1,2,3,4,5]中的每个数字都翻倍

输入格式

输入列表numbers[1,2,3,4,5]

输出格式

列表格式

[2,4,6,8,10]