以下代码的输出是什么 ?
```python
class Count:
def __init__(self, count=0):
self.__count=count
a=Count(2)
b=Count(2)
print(id(a)==id(b), end = '' '')
c= ''hello''
d= ''hello''
print(id(c)==id(d))
```
★★★
正确答案是:B
正确率:79%
解析:
具有相同内容的对象在python库中共享相同的对象,但对于自定义的不可变类不是这样。