<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
print(digits)


digits.reverse()
print(digits)


reversed_digits = reversed(digits)

print(list(reversed_digits))
print(digits)
</pre></body></html>