1、都为str类型则用+号。
2、如果是str和数字类型,则需要将str(数字)转为str后,拼接。
3、如果是str和不确定str或数字,则
msg='I am %s my hobby is %s' %('abc','DDD') print(msg)
%s是万能的,可以接收数字、字符串、列表
参考:https://www.cnblogs.com/Kumanon/p/10389504.html
1、都为str类型则用+号。
2、如果是str和数字类型,则需要将str(数字)转为str后,拼接。
3、如果是str和不确定str或数字,则
msg='I am %s my hobby is %s' %('abc','DDD') print(msg)
%s是万能的,可以接收数字、字符串、列表
参考:https://www.cnblogs.com/Kumanon/p/10389504.html