编写程序,已知字符串s1="我喜欢",s2="Python",运行s1+s2
时间: 2023-05-24 11:02:34 浏览: 183
python实现两个字符串连接程序
可以使用字符串拼接的方式将两个字符串连接起来。
Python 代码如下:
```python
s1 = "我喜欢"
s2 = "Python"
result = s1 + s2
print(result)
```
输出结果为:
```
我喜欢Python
```
阅读全文
python实现两个字符串连接程序