K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
def mergeData(tplData,num): tplData = tplData + (num,) return tplData tpl = (1, 2, 3) print(mergeData(tpl, 4), end = ",") print(tpl)
(1, 2, 3),(1, 2, 3)
(1, 2, 3, 4),(1, 2, 3)
(1, 2, 3),(1, 2, 3, 4)
(1, 2, 3, 4),(1, 2, 3, 4)