下列Python代码执行的结果是?( )
dic={'聊天机器人':'GhatGPT','搜索引擎':'百度','浏览器':'Google'} for x in dic: print(x,end=' ')
GhatGPT 百度 Google
聊天机器人 搜索引擎 浏览器
['GhatGPT','百度','Google' ]
[('聊天机器人','GhatGPT'),('搜索引擎','百度'),('浏览器','Google' )]