编写一个函数,接收一个字符串参数,并返回首字母大写的字符串。例如,输入 “hello world”,输出 “Hello world”。
时间: 2024-02-22 20:59:46 浏览: 19
好的,以下是 Python 代码实现:
```python
def capitalize_first_letter(s):
return s.capitalize()
# 测试
print(capitalize_first_letter("hello world")) # 输出:Hello world
```
这个函数很简单,使用 Python 内置的 `capitalize()` 方法即可将字符串的首字母变为大写。
相关问题
编写一个函数,输入一个字符串,输出该字符串中每个单词的首字母大写的字符串。示例:输入:"hello world" 输出:"Hello World"
好的,我可以为您编写这个函数。以下是 Python 代码实现:
```python
def capitalize_words(string):
# 将字符串按空格分割成单词列表
words = string.split(" ")
# 遍历单词列表,对每个单词进行首字母大写操作
capitalized_words = [word.capitalize() for word in words]
# 将单词列表拼接成字符串并返回
return " ".join(capitalized_words)
```
您可以将这个函数复制粘贴到您的 Python 环境中使用。例如:
```python
string = "hello world"
output = capitalize_words(string)
print(output) # 输出:"Hello World"
```
希望这个函数能够满足您的需求。如果您有其他问题,欢迎随时向我提问。
二、题目: 编写一个函数,输入一个字符串,输出该字符串中每个单词的首字母大写的字符。 示例: 输入:“hello world" 输出:“Hello World
""
好的,让我来为您编写这个函数。您可以使用Python编写如下代码:
def capital_first_letters(input_str):
words = input_str.split()
output_str = ''
for word in words:
output_str += word.capitalize() + ' '
return output_str.strip()
# 示例
input_str = "hello world"
output_str = capital_first_letters(input_str)
print(output_str)
输出:
Hello World
希望这个函数能够满足您的需求。如果您有其他问题,不要犹豫,请随时问我!
阅读全文