About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
jqlts1
7/24/2019 - 4:14 PM
share
Share
add_circle_outline
Save
判断字符串是不是中文.py
.py
content_copy
file_download
def isAllZh(s): for c in s: if not('\u4e00' <= c <= '\u9fa5'): return False return True
clear