赞
踩
print('ab' + 'c') # abc # 字符串拼接
print((1, 2) + (3, 4)) # (1, 2, 3, 4) 元组拼接
print([1, 2] + [3, 4]) # [1, 2, 3, 4] 列表拼接
lst1, lst2 = [1, 2], [3, 4]
lst1.extend(lst2)
print(lst1) # [1, 2, 3, 4]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。