python 基础学习(元组,if,for)

时间:2022-02-18 14:36:09

1.tuple对象

tuple 元组 有序的列表 tuple一旦创建不能修改

a.定义元组
t=('a','b','c')
空元素的tuple t=()
()既表示tuple 也表示运算符的优先级 所以定义一个元素的tuple的 时候加个逗号 如 t=(1,)

可变的tuple t=('a','b',['c','d'])
l=t[2] 第三个元素是list对象
l[0]='ddd'
l[1]='dd'

--------------------------------------------------
2.if语句
相同缩进的作为一个代码块 留意缩进 退出代码块后多敲一行回车

if age<18:
if not age>=18
------------------------------
3.for 循环
l=['a','b','c']
for name in l:
print name