编程实现:删除输入字符串中的所有大写字母,其他字符原样输出,结果如样例所示。
收起
望采纳,谢谢!
data = input() for i in data: if i<='Z' and i >='A': pass else: print(i,end='')
报告相同问题?