- 论坛徽章:
- 0
|
def unique_list(word_list):
"""Return a list which contains unique strings.
>>> unique_list(['cat', 'dog', 'cat', 'bug', 'dog', 'ant', 'dog', 'bug'])
['cat', 'dog', 'bug', 'ant']
>>> unique_list(['Welcome', 'to', 'COMPSCI101', 'To'])
['Welcome', 'to', 'COMPSCI101', 'To')
"""
new_list = []
for word in word_list:
if word not in new_list:
new_list.append(word)
return new_list
import doctest
doctest.testmod()
但是运行的时候有错误,如下
File "C:/Users/apple/Desktop/Lab05_Homework.py", line 4, in __main__.unique_list
Failed example:
unique_list(['cat', 'dog', 'cat', 'bug', 'dog', 'ant', 'dog', 'bug'])
Expected:
['cat', 'dog', 'bug', 'ant']
Got:
['cat']
**********************************************************************
File "C:/Users/apple/Desktop/Lab05_Homework.py", line 7, in __main__.unique_list
Failed example:
unique_list(['Welcome', 'to', 'COMPSCI101', 'To'])
Expected:
['Welcome', 'to', 'COMPSCI101', 'To')
Got:
['Welcome']
**********************************************************************
1 items had failures:
2 of 2 in __main__.unique_list
***Test Failed*** 2 failures.
求大神们来指教~~~~
|
|