list(map(str, [1, 2, 3]))的执行结果为_____________________
举一反三
- set(map(str, [1, 2, 3]))的执行结果为______
- list(map(str,range(2)))的值为?
- x=random.randint(1,1e2)list(map(int,str(x)))如果x取值为83,则结果为?
- 以下哪些结果一定是一个一维列表[’1’,’2’,’3’]?() A: list("123") B: map(unicode,range(1,3)) C: [("1"),("2"),("3")] D: [("1",),("2",),("3",)]
- 表达式 list(map(lambda x: x+5, [1, 2, 3, 4, 5])) 的值为_________。