Computer Science, asked by shantanugarg99, 3 months ago

Find the errors from the following program:

n=input (Enter total number of elements)

l=range(n)

print l

for i in (n):

l[i]=input (“enter element”)

print (“All elements in the list on the output screen”

for j in range(n):

print(l[j))​

Answers

Answered by sohamj9er5
0

Explanation:

dhdhdhdhhdhdhdhdhdududuudhdhduduusuxuuxuxyxyxyxyxyxyxyxyxyxyxyxyxyyxyxyxyxyxyhxhgdgddgdghxyxgxhbdbdbxhxxuxnnjjdjdjjwjedjiddijdjdjdididksjdjdjdjdjejjrjrjrjrjrjrjrjrjrhrjrurududududuududuueudududududuudududududuuddududjxjjdjsjsiskskk

Answered by jai696
2

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

n = int(input("Enter total number of elements: "))

l = []

print(l)

for i in range(n): l.append(input("enter element: "))

print("All elements in the list on the output screen")

for j in l: print(j)

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions