home
Learn
screen_rotation
num = [100, 200, 600, 400, 300, 250] print(num[-1]) print(num[-2]) print(num[0])
Program Output
250 300 100