Python第一天

Python环境的安装

.安装解释器
.安装python

Hello

print("hello")

Python数据类型

列表
代码示例
heroList = ['鲁班七号',"安琪拉","李白",'后羿',100,10.1]
print(heroList)
总结:列表使用[]进行创建,
为什么要使用列表? 它可以将我们需要的很多元素封装到一个容器中
列表的相关操作:
1、访问列表中的元素 列表名[索引]
print("英雄为:",heroList[0],heroList[1],heroList[2])
2、添加元素 append是在列表的末尾进行添加元素
heroList.append('鲁班大师')
print("添加后的列表:",heroList)
3、修改元素
heroList[4] ="貂蝉"
print("修改后的列表:",heroList)
4、删除元素
del heroList[5]
print("删除后的列表:",heroList)

Python中的变量

声明一个变量
int a = 100; #
a = 100  # 不用声明变量的类型,不用写;
交换两个变量
int a = 100;
int b = 1000;
int c = 0;
c = a;
a = b;
b = c;
Python
a = 100
b = 1000
a, b = b, a
print(a,b)

判断语句

格式
if 要判断的条件:
满足条件时要执行的事情
if(age >=18){
     print("恭喜你成年了!可以去网吧了!")
 }
age = input('请输入您的年龄:')
age = 3
判断变量的类型是type函数
print(type(age))
转化成数字类型 int
age = int(age)
print(type(age))  
if age >= 18:
    print("恭喜你成年了!可以去网吧了!")
else:
    print("sorry,你还未成年")

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