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('人')

Want to kickstart your project?Use the new AI Studio to create your code