Dec-07-2021, 08:12 AM
CountDown=[1, 2, 3]
print(CountDown.reverse())
When I run above scripts, I got the result: None instead of [3, 2, 1]
Could anyone explain to me why? Thanks.
print(CountDown.reverse())
When I run above scripts, I got the result: None instead of [3, 2, 1]
Could anyone explain to me why? Thanks.