zl程序教程

您现在的位置是:首页 >  后端

当前栏目

Python 数组的拼接

Python数组 拼接
2023-09-11 14:22:27 时间
#原文:https://www.cnblogs.com/shiluoliming/p/9075693.html

# 数组的拼接
c1 = ["Red","Green","Blue"]
c2 = ["Orange","Yellow","Indigo"]
c1.extend(c2)
print(c1)