✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Was wird der folgende Code ausgeben?What will the following code output?
numbers = [1, 2, 3, 4, 5]for i in range(len(numbers) - 1, -1, -1): print(numbers[i], end=' ')