Python Program to Multiply Elements of A list||G_PROGRAMMING

preview_player
Показать описание
The above given python program is to multiply all the elements of a given list.If you have an doubts or queries related to the program or the concepts,please reach me out at the comments section.

Please like,share,comment and subscribe to G_PROGRAMMING.

To see the program to add the elements of a given list,
Рекомендации по теме
Комментарии
Автор

Hey! Please help me out with this. I have this code: list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
for i in range(1, 9):

for j in range(i+1, 9):

ij = i, j

print("ij=", i, j)
k = list.remove(7)
print("k:", list)
Using which I got pairs from list as output, now how can I add and multiply those?

salwasayeed