python只输出字符串里的大小写字母
时间: 2023-07-26 19:23:55 浏览: 105
python实现从键盘输入一个字符串,将小写字母全部转换成大写字母,然后输出到一个磁盘文件"test"中保存
5星 · 资源好评率100%
可以使用Python的isalpha()方法判断一个字符是否为字母,然后利用循环遍历字符串中的每一个字符,将它们分类为大小写字母和非字母,最后只输出大小写字母。
下面是一段示例代码:
```python
s = "Hello, World!"
result = ""
for c in s:
if c.isalpha():
if c.isupper():
result += c
elif c.islower():
result += c
print(result)
```
输出结果为:
```python
HelloWorld
```
这里的result变量保存的就是字符串s中的大小写字母。
阅读全文