数字可以强制转换为字符串,但是字符串不能强制转换为数字(会报错)
a='abcs'
b='dsys'
方法一、a+b 最low的一个方法,因为每+一次内存重新开辟一块空间
方法二、print '%s%s'%(a,b)
方法三、''.join([a,b])
方法四、'this is {0}{1}'.format('apple','bana')
print 'my name is {fruit},hehe,{apple}'.format(fruit='apple',apple='nihao')
print 'this is %(whose)s %(fruit)s'%{'whose':'my','fruit':'apple'}