第13734题 单选
Python读取《水浒传》《红楼梦》文本后,求Unicode编码在0x4E00到0x9FA5之间的完整汉字集合,横线处应填入的代码是?
shzFile = open("水浒传.txt", "r", encoding = "utf-8")
hlmFile = open("红楼梦.txt", "r", encoding = "utf-8")
sSet = set(shzFile.read())
hSet = set(hlmFile.read())
shzFile.close()
hlmFile.close()

print(________________________________)
A

{x for x in (sSet + hSet) if 0x4E00 <= ord(x) <= 0x9FA5 }

B

{x for x in (sSet | hSet) if 0x4E00 <= x <= 0x9FA5 }

C

{x for x in (sSet + hSet) if 0x4E00 <= x <= 0x9FA5 }

D

{x for x in (sSet | hSet) if 0x4E00 <= ord(x) <= 0x9FA5 }