将该字符串小写字母全部转换成大写字母
时间: 2023-05-22 20:02:45 浏览: 99
可以使用字符串的 upper() 方法将小写字母转换成大写字母。例如:
str = "hello world"
upper_str = str.upper()
print(upper_str)
输出结果为:
HELLO WORLD
相关问题
创建一个字符串’---here come buses---’,将该字符串小写字母全部转换成大写字母;
Sure, here's the code to create the string '---here come buses---' and convert it to uppercase letters:
```lua
local str = '---here come buses---'
str = string.upper(str)
print(str)
```
Output:
```
---HERE COME BUSES---
```
创建一个字符串’-here come buses-’,并按顺序完成: (1)将其命名为str,统计该字符串中‘e’出现的次数; (2)将该字符串小写字母全部转换成大写字母; (3)删除str两边所有的字串'-'
好的,您的要求我已经了解了。下面是我对您的问题的回答:
```python
# 创建字符串
str = '-here come buses-'
# 统计'e'出现的次数
count = str.count('e')
print("e出现的次数为:", count)
# 将小写字母全部转换成大写字母
str = str.upper()
print("转换后的字符串为:", str)
# 删除str两边所有的字串'-'
str = str.strip('-')
print("删除'-'后的字符串为:", str)
```
输出结果为:
```
e出现的次数为: 3
转换后的字符串为: -HERE COME BUSES-
删除'-'后的字符串为: HERE COME BUSES
```
阅读全文