更新时间2019-06-19 04:24:07
语言要求?以下是python的
p=input()
c1=""
c2=""
c3=""
for c in p:
if c.isupper():
c1=c1+c
if c.islower():
c2=c2+c
if c.isdigit():
c3=c3+c
print(c1)
print(c2)
print(c3)
上一篇:怎么实现和维护MIS的总体结构
下一篇:C#定义一个点的类(Point)