元组
元组(tuple)也是一种序列,和我们用了很多次的list类似,只是元组中的元素在创建之后就不能被修改。
在线运行演示代码
参考教程
geeks = ('Sheldon', 'Leonard', 'Rajesh', 'Howard') for g in geeks: print(g) print(geeks[1:3]) def get_pos(n): return (n/2, n*2) x, y = get_pos(50) print (x, y) pos = get_pos(50) print(pos[0], pos[1])