直接连接
第三种,直接连接中间有无空格均可:
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print('南海''是''中国的南海')
南海是中国的南海
第四种,使用操作符。
在 Python 2.6 以前,操作符是唯一一种格式化字符串的方法,它也可以用于连接字符串。
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print('%s %s %s' % ('黄岩岛', '是', '中国的岛礁'))
黄岩岛 是 中国的岛礁
领取专属 10元无门槛券
私享最新 技术干货