Answer:
# we import sys to allow the program use system argument
import sys
# The passed argument is read and assigned to N
N = int(sys.argv[1])
# An empty list called list_of_input is declared
list_of_input = []
# A for loop is initiated using range.
# We use N because the list is indexed using zero-indexed
for value in range(0, N):
# User is prompted to enter the list element
element = int(input("Enter list element: "))
# The inputted element is multiplied by 10 and appended to the list
list_of_input.append(element * 10)
# The list is printed
print(list_of_input)
Explanation:
A screenshot of the output is attached. Also if an argument value of 0 is passed, it will print an empty list.