运行以下程序,输出为()
Artist = [{"id":1,"val":10},{"id":2,"val":20}] print(artist[0]["val"] + artist[1]["id"])
12
11
21
30