首頁 > 後端開發 > Python教學 > Python 列表教程

Python 列表教程

Mary-Kate Olsen
發布: 2025-01-07 06:23:48
原創
821 人瀏覽過

Python List Tutorial

#Problem 1: Print the following Output from the 2 given lists.
#10 5 10 7
#20 5 20 10 20 30
#30 5 30 10 
l1 = [10,20,30]
l2 = [5,10,30]
for value in l1:
    for elem in l2:
        if value != elem:
            print(value, elem, end=' ')
    print()


#Problem 2 : Missing Values

print('===================================================')
l1 = [10,20,30,40,50,70,80,100,120,130,170]
d = l1[1] - l1[0]
i=0
while i<(len(l1)-1):
    if (l1[i+1] - l1[i]) != d :
        print('Missing Value:',l1[i]+d)
    i+=1        


#Problem 3 : l1 = [5,0,10,3,2,7,6,5,4,9,1]
#Find pair of elements with a given sum =10
print('===================================================')
l1 = [5,0,10,3,2,7,6,5,4,9,1]
i=0
j=0
while i <  len(l1):
    while j < len(l1):
        if l1[i]+l1[j] == 10 and j != i:
            print('#Element:',i,'-',l1[i],'#Index[',j,']',l1[j])
        j+=1
    i+=1
    j=0







登入後複製

以上是Python 列表教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板