strs = ' I like python ' one = strs.strip() print(one) two = strs.rstrip() print(two)
时间: 2024-03-08 20:48:00 浏览: 41
我用python写的print输出
这段代码的输出结果为:
```
I like python
I like python
```
首先,`strip()` 方法用于删除字符串开头和结尾的空格,所以 `one` 变量的值为 `"I like python"`,而 `two` 变量使用的是 `rstrip()` 方法,它只会删除字符串结尾的空格,所以 `two` 变量的值为 `" I like python"`,开头的空格没有被删除。
阅读全文