qq_慕UI7109719
2021-03-17 18:39
输入整数我知道,但是不知道怎么怎么搞正整数。
a=list(map(int,input().strip().split())) # 1 2 3 4 5 -1 -2 -3 -4 -5 c=list(filter(lambda x:x>=0,a)) b=list(filter(lambda x:x<0,a)) print(c,b)# output [1,2,3,4,5],[-1,-2,-3,-4,-5]
Python3 入门教程(新版)
154170 学习 · 1075 问题
相似问题
回答 2
回答 2