需求 通过下标获取元组的值 示例 登录后复制 t = ("a","b","c") item = t[0] print(item) item2 = t[1] print(item2) item3 = t[-1] print(item3) 1.2.3.4.5.6.7.8.9.10. 原创作者: u_13137233 转载于: https://blog.51cto.com/u_13137233/11819886