word_1 = '如何再飘摇'
res = True
for w in word_1:
if not '\u4e00' <= w <= '\u9fff':
res = False
print(res)
# True
word_2 = '风停了云知道2333'
res = True
for w in word_2:
if not '\u4e00' <= w <= '\u9fff':
res = False
print(res)
# False
word_3 = 'abc风中有朵雨做的云abc'
res = True
for w in word_3:
if not '\u4e00' <= w <= '\u9fff':
res = False
print(res)
# False