- 檢查我
- 檢查,看在位置的鍵/值,如果鍵/值包含字符串
- 刪除/存儲在另一個變量或者鍵/值
的這個Java代碼的equivelant:
//Some list...
ArrayList<String> example;
...
//Index into data structure
example.get(i);
//Check for some string...
if (example.get(i).contains("someText")){
somestuff;
}
//Store in some other variable
exam = example.get(i)
這就是我在Java中有效的嘗試,但是我希望能夠用Python dictionarties做到這一點,但我不確定這是否可能,因爲我發現Python文檔比較難讀。
請在Python版本中發佈您的最佳嘗試。這不是「請爲我的網站編寫我的程序」 –