We provide you with a number N. Create a list then, using a loop, populate the list with N elements. Set each list element to the index multiplied by 10. Beware: we might pass in a value 0, in which case you should return an empty list.# Get N from the command line
import sys
N= int(sys.argv[1])

Respuesta :

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.

Ver imagen ibnahmadbello