我無法獲取代碼來使這項工作適合我的生活。從停在某個位置的列表中返回一個新列表
在本練習中,您的函數將收到一個參數,即一列 字符串。你的函數將並返回一個新的列表,只 包括從參數字符串的拷貝最多,但不包括 串
kahn
。kahn
將在列表中。
預期結果:
words_up_to_kahn(["kirk", "spock", "luke", "charlie", "kahn", "bob"]) -> ["kirk", "spock", "luke", "charlie"]
words_up_to_kahn(["ernie", "kahn", "bert", "teal'c"]) -> ["ernie"]
例子: 難道是這樣的?
return words[0:kahn]
或者是這樣的:
def words_up_to_kahn(words):
new = ""
c = 0
while words[c] != "kahn":
new = new + words[c]
c = c + 1
return new
還是別的什麼?
哪裏是你的代碼? –
'list.index()'在這裏可能很有用。 – Evert
我添加了一些代碼,我一直試圖裸露我一直使用python不到1周 –