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