python-字典-如何取出字典中的所有值

當代女大學生發表於2020-12-02
test = {'A': 1, 'B': 2, 'C': 3}
    for i,j in test.items():
        print(i, j)
test = {'A':123 ,'B':345,'C':345 }
for i in test :
    print(i,test[i])

輸出:

A 1

B 2

C 3

相關文章