Python的第一天

单行注释 # 注释的作用 让读代码的人懂

爬虫:需要掌握的技术

1.python的基础语法

1.1常用的数据类型

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

1.1.1列表

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

创建一个列表

heroList = ['鲁班七号',"安琪拉","李白","后羿",100,10,1]
print(heroList)

总结:列表使用[进行创建]

为什么要使用列表? 列表可以将我们需要的很多元素封装到一个容器中

列表的相关操作:

1.访问列表中的元素 列表名[索引]

print("英雄为:",heroList[1],heroList[0])

2.添加元素

heroList.append('鲁班大师')
print('添加后的列表',heroList)

3.修改

heroList[4] = "貂蝉"
print("修改后的列表",heroList)

4.删除

del heroList[5]
print("删除后的列表",heroList)

正式的Python之旅

Python语言介绍

Python中的变量

声明一个变量

C中:int a = 100

Python中

a = 100 #不用声明变量的类型,不用写;

交换两个变量

C中:

int a = 100;

int b = 1000;

int c = 1;

a = b

b = c

c = a

python中:

a = 100
b = 1000
##c = 0
##c = a
##a = b
##b =c
a,b = b,a
print(a,b)

判断语句

格式

if 要判断的条件:

满足条件时要执行的事情

if(a

恭喜你成年啦,可以去网吧啦

}

age = input('请输入您的年龄')
#age = 3
print(type(age))
#转化成数字类型
age = int(age)
print(type(age))
if age >= 18:
    print("恭喜你成年啦,可以去网吧啦")
else:
    print ('sorry,你还是个宝宝')

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