运行下列代码,正确的结果是?( )
>>>x = set('runoob')
>>> y = set('google')
>>> x & y
{‘o’,’o’}
{'r', 'b', 'u', 'n'}
{'b', 'e', 'g', 'l', 'o', 'n', 'r', 'u'}
{'o'}