假设有字符串如下: s="Man is the master of his destiny." 编写程序,提取出字符串中的单词,并按照每行一个单词的格式输出。
时间: 2024-05-03 12:16:58 浏览: 120
Java小程序 输入一个字符串,将每一个单词首字母大写
你可以尝试以下 Python 代码来提取字符串中的单词并输出:
```python
s = "Man is the master of his destiny."
words = s.split() # 将字符串切分为单词列表
for word in words:
print(word) # 每行输出一个单词
```
输出结果为:
```
Man
is
the
master
of
his
destiny.
```
注意,最后一个单词 "destiny." 中包含了一个句点,可以根据实际需求去掉。
阅读全文