摘要: str5 = input('请输入内容:')str6 = input('请输入要删除的内容:')for i in str6: if i in str5: str5 = str5.replace(i,'')print(str5)#拼接思想str7 = ''str5 = input('请输入内容:')s 阅读全文
posted @ 2019-12-06 10:25 东北虎001 阅读(887) 评论(0) 推荐(0)
摘要: sum = ''isaways =''while isaways != 'q' and isaways != 'Q' : username = input('请输入用户名:') passwd = int(input('请输入密码:')) e_mail = input('请输入邮箱:') if len 阅读全文
posted @ 2019-12-06 09:28 东北虎001 阅读(489) 评论(0) 推荐(0)