数字可以强制转换为字符串,但是字符串不能强制转换为数字(会报错)
a='abcs'
b='dsys'
法一、a+b 最low的一个方法,因为每+一次内存重新开辟一块空间
法二、print '%s%s'%(a,b)
法三、''.join([a,b])
listStr = ['python', 'tab', '.com']
website = ''.join(listStr)
法四、'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'}
website = '%s%s%s' % ('python', 'tab', '.com')