re模块中的____函数用于将字符串按与正则表达式匹配的子串分割。
查看答案
下面程序从键盘输入一个字符串,然后将其中的大写字母转换为小写字母,小写字母转换为大写字母,其他字符不变,请将程序填写完整。str = input("请输入一个字符串")ns=''for c in str:if c>='A' and c<='Z':ns+=elifns+=c.upper()else:print(ns)
写出下面程序的运行结果。print("ad">"abcd")print("AD">"abcd")print("AD">"ADC")print("tianjin">"beijing")print("天津">"北京")
写出下面程序的运行结果。s1="I am a student."s2="C++90分Python88分Java85分"s3="I am a student.\nI like programming.\n"print(s1.split())print(s2.split("分"))print(s2.split("分",2))print(s3.splitlines())
写出下面程序的运行结果。str=" a b c "print("123"+str.strip()+"456")print("123"+str.lstrip()+"456")print("123"+str.rstrip()+"456")