编写python程序,用户输入一段英文,然后输出这段英文中所有长度 为3个字母的单词。 点击复制后,将打开C知道体验页 向
时间: 2024-05-08 20:19:16 浏览: 42
学习笔记 | python语言 | 输入和输出
5星 · 资源好评率100%
您问的问题属于技术问题,可以直接回答。下面是Python程序的代码:
```python
text = input("请输入一段英文: ")
words = text.split()
three_letter_words = [word for word in words if len(word) == 3]
print("这段英文中所有长度为3的单词有:", three_letter_words)
```
阅读全文