从键盘输入一些字符,逐个把它们写到指定的文件 out.txt 中,直到输入一个@为止。
示例1:
输入:"
Python
is
open.@
"
输出: “Python is open.”(执行代码后,out.txt文件中内容)
示例2:
输入:“python@123”
输出:“python”(执行代码后,out.txt文件中内容)
fp = open('out.txt','w',encoding='utf-8')
ch = input("请输入字符串:\n")
while ch:
if '@' in ch:
ls=ch.split('@')
fp.write(ls[0])
break
else:
fp.write(ch + " ")
ch = input("请输入字符串:\n")
fp.close()