def ChineseCharCount(str_str) :
count = 0
if str == type(str_str) :
for str_tmp in str_str :
if ord(str_tmp) - ord('0') >= 128 :
count += 1
return count
print(ChineseCharCount(2))
print(ChineseCharCount('里斯kjfweofjhi23#@#$%#$王iowje@#'))