编写一个函数,将字符串中的小写字母转换为大写字母,主西数输入字符串并输出结果。
时间: 2023-06-15 10:06:25 浏览: 177
以下是 Python 代码实现:
```python
def to_upper_case(s):
"""
将字符串中的小写字母转换为大写字母
"""
result = ""
for c in s:
if 'a' <= c <= 'z':
result += chr(ord(c) - 32)
else:
result += c
return result
# 测试代码
s = "This is a Test String."
print(to_upper_case(s))
```
输出结果为:
```
THIS IS A TEST STRING.
```
阅读全文