print前面的空格会影响答案吗
时间: 2023-08-14 12:07:45 浏览: 146
Python习题集(含答案)
5星 · 资源好评率100%
在Python中,print前面的空格不会影响答案,因为Python会忽略字符串前后的空格。例如,下面两行代码输出的结果是一样的:
```python
print("hello")
print(" hello")
```
输出结果都是:`hello`
但是,如果在字符串中间添加空格,那么空格就会影响答案。例如:
```python
print("1 + 1 =", 1+1)
print("1 +1 =", 1+1)
```
第一行输出结果为:`1 + 1 = 2`,第二行输出结果为:`1 +1 = 2`,因为第二行字符串中间少了一个空格,导致输出结果不同。
阅读全文