Computer Science, asked by maliniprak, 3 months ago

,
perform the operations given below.
numbers = [23,45,54,1,55,10,75]
1. Insert 35 into the list between 55 and 10
2. Insert 100 as the 2nd element of the list
3. Insert 90 in 3rd index position of the list
4. Append 150 and 200 to the end of the
list
5. Print the index value of number 54
6. Sort the list in ascending order
7. Find the highest value in the list
8. Find the lowest value in the list
9. Find the index value of the lowest value
in the list
10. Find the sum of all numbers in the list​

Answers

Answered by jai696
2

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

numbers = [23,45,54,1,55,10,75]

numbers.insert(5, 35)

numbers[1] = 100

numbers[3] = 90

numbers += [150, 200]

print(numbers.index(54))

numbers.sort()

print(max(numbers))

print(min(numbers))

print(numbers.index(min(numbers)))

print(sum(numbers))

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

Similar questions