Computer Science, asked by gauravchaurasia35, 1 year ago

Use the range() function to create the following lists:[7,5,-1,-5]

Answers

Answered by Anonymous
0

Answer:

its a python program...

Explanation:

l=[]

for i in range (4):

   l.append(int(input("enter the value")))

print(l)

#hope it helps you

please mark brainliest

Similar questions