python遍历字符串
时间: 2023-06-18 12:06:31 浏览: 122
可以使用 for 循环来遍历字符串中的每个字符,示例代码如下:
```python
s = "hello world"
for c in s:
print(c)
```
输出结果为:
```
h
e
l
l
o
w
o
r
l
d
```
另外,如果你想要获取字符串的某个字符,可以使用索引,示例代码如下:
```python
s = "hello world"
print(s[0]) # 输出 'h'
print(s[6]) # 输出 'w'
```
相关问题
python遍历字符串,碰到什么后就退出
在 Python 中,你可以使用 `break` 语句来退出循环。如果你想要遍历一个字符串,碰到某个字符后就退出,可以使用 `for` 循环和 `if` 语句来实现。例如,假设你要遍历字符串 `"hello world"`,碰到字符 `"l"` 后就退出循环,你可以这样写:
```python
s = 'hello world'
for c in s:
if c == 'l':
break
print(c)
```
这个程序会输出:
```
h
e
```
因为碰到第一个 `"l"` 后就退出循环了。
使用python遍历字符串,去除换行和回到行首形成新的字符串
可以使用Python的字符串方法replace()和strip()去除换行和回车符。代码示例如下:
```
str = "Hello\nWorld\r\n"
new_str = str.replace("\n", "").replace("\r", "").strip()
print(new_str)
```
输出结果为:
```
HelloWorld
```
阅读全文