Python 练习

1. 题目

找出 ['a', 'b', 'c', 'd', 'a'] 当中重复的元素和位置

2. 分析

3. 实例

点我看答案
a = ['a', 'b', 'c', 'd', 'a', 'c']
b = [(x, y) for x, y in enumerate(a) if a.count(y) > 1]
print(b)

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""