30.字符串清理:
现有字符串 msg = “hel@#KaTeX parse error: Expected 'EOF', got '\nhon' at position 8: lo pyt \̲n̲h̲o̲n̲ ̲ ̲ ̲ni\t hao%” ,去掉所有不是英文字母的字符,打印结果:“请理以后的结果为:hellopythonnihao”
msg = "hel@#$lo pyt \nhon ni\t hao%$"
msg = msg.replace("@", "")
msg = msg.replace("#", "")
msg = msg.replace("$", "")
msg = msg.replace("\n", "")
msg = msg.replace(" ", "")
msg = msg.replace("\t", "")
msg = msg.replace("%", "")
print(msg)
31.字符串统计:
提示用户输入任意字符串,统计字符串中每个字符出现的次数
str1 = input("请输入任意字符串:")
str2 = ""
for _ in range(len(str1)):
if str1 == "":
break
else:
a = str1.count(str1[0])
print("%s的个数为:%s" % (str1[0], a))
str1 = str1.replace(str1[0], "")