python从键盘输入 10个字符串,至少有两个字符串中含有“the”, 每个字符串不超过100个字符,建立一个文本文件wenjian.txt,每个字符串占一行。
时间: 2023-12-14 16:38:45 浏览: 119
再谈Python中的字符串与字符编码(推荐)
以下是实现该功能的Python代码:
```python
# 从键盘输入10个字符串
strings = []
count = 0
while count < 10:
s = input("请输入第{}个字符串:".format(count+1))
if "the" in s:
count += 1
strings.append(s)
# 将字符串写入文本文件
with open("wenjian.txt", "w") as f:
for s in strings:
f.write(s + "\n")
```
首先,我们使用一个循环从键盘中读取10个字符串,如果有字符串中包含“the”,就将其加入到一个列表中。读取完毕后,我们使用文件操作将这些字符串写入到名为“wenjian.txt”的文本文件中,每个字符串占一行。
阅读全文