请问,python如何可以输出由输入的四个数所组成的最大偶数?另外,组成的四位数各位上的数不相等。
for number in range(1000, 9999): if number % 2 == 0: print(number)