del []

To remove an element from the list, we can use the del command:

l = [12, 54, 'hello']
del l[1]
print(l)    # [12, 'hello']
del l[-1]
print(l)    # [12]
del l[0]
print(l)    # []

Challenge

Declare an empty list and add 7 integers read from the input with append.

Remove the 1st and the 4th elements from the list.

Print the resulting list in the output.

Input

Output

1 2 3 4 5 6 7

[2, 3, 5, 6, 7]

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue