python 第一天

print("hello world")

# 1. python基础语法

# 1.1 常用数据类型

# 数字,列表,字符串,字典,元组,集合

# 1.1.1列表

# 类似于c中的数组,但是与数组不同的是,list可以存储不同类型的数据,

heroList =['鲁班七号' ,"安其拉" ,"李白" ,"后羿",100,10.1,"abc",]#单双引号都行但是保存的时候时单引号

print(heroList)

#列表使用[]进行创建,为什么使用列表,列表可以将我们需要的很多元素封装到一个容器中

#列表的相关操作

#访问列表中的元素 列表名[索引] 索引 ,,比如鲁班七号索引是0;

print(heroList[0],heroList[2])

# 2. 添加元素 append 是在列表的末尾进行添加元素

heroList.append("鲁班大师")

print(heroList[7])

# 3. 修改元素

heroList[4] ="貂蝉"

print(heroList)

# 4. 删除元素

del heroList[6]

print(heroList)

# 1.2 判断和循环

#判断语句

#要判断的条件:

    #满足条件时要执行的事情

age=input('请输入您的年龄')

# 判断数据类型

print(type(age))

age=(int(age))

if age>=18:

print("恭喜你成年了")

else:

print('对不起,你还是个宝宝')

# 1.3 函数

你可能感兴趣的:(python 第一天)