发现自己写python的空格split还挺多坎的,尤其是最后一个是空格的情形: def split(s): i = 0 ans = [] while i < len(s): start = i # find space while i < len(s) and s[i] != ' ': i += 1 ans.append(s[start:i]) i += 1 if s and s[-1] == " ": ans.append("") return ans
str8="中国 和 韩国 的区别" # a=str8.find("Python") # print a b=str8.find("和") print b word=str8.split(" ") #Python3 和Spark 这里可以直接正确分割中文 print word for i in word: #python 2.x 需要这样输出 print i #这是关于编码的问题# print "-"*50