Python第一天

Python环境的安装

-安装解释器
-安装pycham

Python数据类型

列表

代码示例

heroList = ["鲁班七号","安琪拉","李白","后羿",100,"char"]
print(heroList)
print("英雄:",heroList[1],heroList[2])
heroList.append('鲁班大师')
print('添加后的列表:',heroList)
heroList[4] = "貂蝉"
print("修改后的列表:",heroList)
del heroList[5]
print("删除后的列表:",heroList)
交换两个变量
a = 100
b = 1000
a,b = b,a
print(a,b)
判断
age = input("请输入您的年龄:")
#age = 18
print(type(age))
# 转换成数字类型
age  = int(age)
print(type(age))
if age>=18:
    print("恭喜你成年了,可以去网吧了")
else:
    print("sorry,你还是个宝宝")

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