题库 Python题库 题目列表 执行下面Python代码后,输出的结果是?( )1 t1...
单选题

执行下面Python代码后,输出的结果是?( )

1 t1 = ("python", "c++", "scratch")
2 t2 = tuple(i for i in t1[::-1])
3 print(t2)
A.
('scratch', 'c++', 'python')
B.
('python', 'scratch', 'c++')
C.
('scratch', 'python','c++')
D.
( 'c++','python','scratch')
题目信息
2024年 6月 选择题
75%
正确率
0
评论
57
点击