测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A57169. 下面代码的输出结果是?( )dict1 = {1: 10, 2: 20, 3: 30}

单选题

题目描述

下面代码的输出结果是?( )<br/><pre class="brush:python;toolbar:false">dict1&nbsp;=&nbsp;{1:&nbsp;10,&nbsp;2:&nbsp;20,&nbsp;3:&nbsp;30}
dict2&nbsp;=&nbsp;{2:&nbsp;40,&nbsp;4:&nbsp;50}
dict1.update(dict2)
print(dict1)</pre>

选项(单选)