简体   繁体   中英

Why object is taking last value in list?

Why object is taking last value in list

ddd = [1,2]
master_list = []
for ridx in range(1):
    row_list = [] ; row_data = {} ; header_dic = {} ; 
    header_dic['background-color'] = 'green'
    row_list.append(header_dic)
    for metric_id in range(2):
        row_data['background-color'] = ddd[metric_id]
        row_list.append(row_data)
    master_list.append(row_list)

print(master_list)  

Output coming :

[[{'background-color': 'green'}, {'background-color': 2}, {'background-color': 2}]]

Expected output :

[[{'background-color': 'green'}, {'background-color': 1}, {'background-color': 2}]]

Just move row_data in inner loop.

ddd = [1,2]
master_list = []
for ridx in range(1):
    row_list = [] ; header_dic = {} ; 
    header_dic['background-color'] = 'green'
    row_list.append(header_dic)

    for metric_id in range(2):
        row_data = {} 
        row_data['background-color'] = ddd[metric_id]
        row_list.append(row_data)
    master_list.append(row_list)

print(master_list)  

And you will get the expected output:

[[{'background-color': 'green'}, {'background-color': 1}, {'background-color': 2}]]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM