using System;using System.Linq;class Program{ static void Main(string[] args) { int[] numbers = { 1, 2, 3, 2, 1 }; var distinctNumbers = numbers.Distinct(); foreach (var number in distinctNumbers) { Console.WriteLine(number); } }}转为python
时间: 2024-01-23 22:02:09 浏览: 122
C#使用linq查询大数据集的方法
这段C#代码的功能是去除整数数组中的重复元素并输出不重复的元素。将这段代码翻译成Python可以使用以下代码:
```python
numbers = [1, 2, 3, 2, 1]
distinct_numbers = list(set(numbers))
for number in distinct_numbers:
print(number)
```
在这个Python程序中,我们首先定义了一个整数列表numbers,然后使用Python内置的set()函数去除重复元素,并将结果转换为列表。最后,我们使用for循环遍历去重后的列表并输出每个元素。
阅读全文