python给出一个字符串,将其中的字符“E”与空格替换后输出
时间: 2023-05-16 20:05:03 浏览: 124
可以使用字符串的 replace() 方法来实现:
```python
s = "Hello World! This is a test string with E in it."
s = s.replace("E", " ")
print(s)
```
输出结果为:
```
Hllo World! This is a tst string with in it.
```
相关问题
python编写程序,给出一个字符串,将其中的字符“E”用空格替换后输出。 (2)编写程序,给出一个字符串,将其中的字符“E”用空格替换后输出。
第一题代码:
```python
s = input("请输入一个字符串:")
s = s.replace("E", " ")
print(s)
```
第二题代码:
```python
s = input("请输入一个字符串:")
s = s.replace("E", " ")
print(s)
```
两题的代码是一样的,因为题目描述完全相同。
python编写程序,给出一个字符串,将其中的字符“E”用空格替换后输出
可以使用字符串的 replace() 方法将字符 E 替换成空格,具体代码如下:
```python
s = "Hello, everyone! Enjoy Python programming!"
result = s.replace("E", " ")
print(result)
```
输出:
```
Hllo, vryon! njoy Python programming!
```
阅读全文