编写一个函数,接受一个字符串作为参数,并返回一个新的字符 串,新字符串中的每个宇符都是原字符串中字符的大写形式
时间: 2023-07-15 21:11:13 浏览: 59
以下是 Python 代码实现:
```python
def uppercase_string(string):
return string.upper()
```
调用函数:
```python
print(uppercase_string("Hello World!")) # 输出:HELLO WORLD!
```
阅读全文