You are viewing a single comment's thread. Return to all comments →
nm = list(map(int, input().split())) print(float(len(list(filter(lambda x:x > 0, nm))))/len(nm)) print(float(len(list(filter(lambda x:x < 0, nm))))/len(nm)) print(float(len(list(filter(lambda x:x == 0, nm))))/len(nm))
Seems like cookies are disabled on this browser, please enable them to open this website
Plus Minus
You are viewing a single comment's thread. Return to all comments →