Generation

generate functionTue, 23 May 2023

find out all the Chinese characters

def isChinese(word): if u'\u4e00' <= word <= u'\u9fff': return True else: return False isChinese('人')

Questions about programming?Chat with your personal AI assistant