Discussions Q&R
What next?
1 Vote
2 Réponsesdef manipulate_data(n):
positives,negatives=[],[]
if not isinstance(n,list):
return
else:
for i in n:
if i>=0:
positives.append(i)
if i<0
negatives.append(i)
new=[len(positives,sum(negatives)]
return new.
please the unittest is still telling me that my code failed the "only lists" allowed test.what do I do.
0 Vote
7 Réponsesdef manipulate_data(n):
positives,negatives=[],[]
if not isinstance(n,list):
raise ValueError
return
else:
for i in n:
if i>=0:
positives.append(i)
if i<0
negatives.append(i)
new=[len(positives,sum(negatives)]
return new.
Someone kindly assist I keep running it in unitests and I keep getting errors.
Here's the question:
0 Vote
2 RéponsesAujourd'hui en vedette
Activities on sololearn
4 Votes
playground input
1 Votes
Html issue
2 Votes
Can you help me ?
1 Votes
How I can use div
1 Votes
TIPS From Veterans
1 Votes
Playground input
1 Votes
App development đ„âïž
1 Votes
Computer architecture
1 Votes