运行下列程序, 输出的结果是? ( )
x=['bike','car','bus','train']
print(list(map(len, x)))
[0, 1, 2, 3]
[1, 2, 3, 4]
[4, 3, 3, 5]
[4, 3, 3, 4]