Python第一天

Python环境的安装

-安装解释器
-安装Pycharm

Python数据类型

列表
# 单行注释  #  注释的作用 让读代码的人看的懂
# 爬虫: 需要掌握的技术
# 1. Python基础语法
# 2. HTML结构
# 3. 爬虫模块的使用
# 1. Python基础语法
# 1.1常用的数据类型
# 数字、列表、字符串、字典、元组、集合
# 1.1.1列表
# 类似于c中的数组, 但是与数组不同的是, list可以存储不同类型的数据
# 创建一个列表
# 1、访问列表中元素  列表名[索引]
heroList=['鲁班','韩信','李白','露娜']
print(heroList)
# 2、添加元素 append 是在列表的末尾进行添加元素
print("英雄为:",heroList[1],heroList[0])
heroList.append('鲁班大师')
print('添加后的列表',heroList)
# 3、修改
heroList[4]="貂蝉"
print("修改后的列表",heroList)
# 4、删除
del heroList[4]
print("删除后的列表",heroList)
# 1.2判断和循环
#
# 1.3函数
# Python
# a = 100
# b = 1000
# a, b = b, a
# print(a, b)
# 判断语句
# 格式
# if 要判断的条件:
#     满足条件时要执行的事情
# if(age >= 18:){
#    恭喜你成年了,可以去网吧了
# }
age = input('请输入您的年龄')
# age = 3
# 判断变量的类型是type函数
print(type(age))
# 转换成数字类型 int
age = int(age)
print(type(age))
if age >= 18:
    print("恭喜你成年了,可以去网吧了")
else:
    print('sorry,你还是个宝宝')

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