新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Python程序:列表乘法
創(chuàng)新互聯(lián)Python教程:

編寫一個 Python 程序,使用 for 循環(huán)范圍執(zhí)行列表乘法。在這個 Python 示例中,我們允許用戶輸入列表項。接下來,我們使用 for 循環(huán)范圍(for i in range(listNumber))來迭代 multiList 列表項。在循環(huán)中,我們將每個列表項相乘并打印結果。
# List Multiplication
multiList = []
listNumber = int(input("Enter the Total List Items = "))
for i in range(1, listNumber + 1):
listValue = int(input("Enter the %d list Item = " %i))
multiList.append(listValue)
print("List Items = ", multiList)
listMultiplication = 1
for i in range(listNumber):
listMultiplication = listMultiplication * multiList[i]
print("The Muliplication of all teh List Items = ", listMultiplication)
使用 For 循環(huán)的 Python 列表乘法程序
# List Multiplication
multiList = []
listNumber = int(input("Enter the Total List Items = "))
for i in range(1, listNumber + 1):
listValue = int(input("Enter the %d List Item = " %i))
multiList.append(listValue)
print("List Items = ", multiList)
listMulti = 1
for num in multiList:
listMulti = listMulti * num
print("The Muliplication of all teh List Items = ", listMulti)
Enter the Total List Items = 5
Enter the 1 List Item = 10
Enter the 2 List Item = 4
Enter the 3 List Item = 9
Enter the 4 List Item = 11
Enter the 5 List Item = 7
List Items = [10, 4, 9, 11, 7]
The Muliplication of all teh List Items = 27720
這個 Python 程序使用 While 循環(huán)執(zhí)行列表乘法。
# List Multiplication
multiList = []
listNumber = int(input("Enter the Total List Items = "))
for i in range(1, listNumber + 1):
listValue = int(input("Enter the %d List Item = " %i))
multiList.append(listValue)
print("List Items = ", multiList)
listMultiplication = 1
i = 0
while (i < listNumber):
listMultiplication = listMultiplication * multiList[i]
i = i + 1
print("The Multiplication of all the List Items = ", listMultiplication)
Enter the Total List Items = 4
Enter the 1 List Item = 9
Enter the 2 List Item = 10
Enter the 3 List Item = 2
Enter the 4 List Item = 4
List Items = [9, 10, 2, 4]
The Multiplication of all the List Items = 720
在這個 Python 列表的例子中,我們創(chuàng)建了一個 list 乘法(multiList)函數(shù),返回結果 go 列表乘法。
# List Multiplication
def listMultiplication(multiList):
listMulti = 1
for num in multiList:
listMulti = listMulti * num
return listMulti
multiList = []
listNumber = int(input("Enter the Total List Items = "))
for i in range(1, listNumber + 1):
listValue = int(input("Enter the %d List Item = " %i))
multiList.append(listValue)
print("List Items = ", multiList)
listMultip = listMultiplication(multiList)
print("The Multiplication of all the List Items = ", listMultip)
Enter the Total List Items = 3
Enter the 1 List Item = 10
Enter the 2 List Item = 20
Enter the 3 List Item = 8
List Items = [10, 20, 8]
The Multiplication of all the List Items = 1600 本文題目:Python程序:列表乘法
網(wǎng)頁路徑:http://fisionsoft.com.cn/article/dpggoso.html


咨詢
建站咨詢
