Pyton 字符串包含及判斷處理及去除空格

第一種方法:in string = 'helloworld' if 'world' in string:   print 'Exist' else:   print 'Not exist' 第二種方法:find string = 'helloworld' if string.find(’world‘) == 5: #5的意思是world字符從那個序開始,因爲w位於第六個,及序爲5,所以判斷5   
相關文章
相關標籤/搜索