Python第一天

Python环境的安装

  • 安装解释器
  • 安装pycharm

1 Python数据类型

1.1列表

代码实例

herolist = ['虞姬','安吉拉','亚索',10.1]
print(herolist)
# 总结:列表使用[]进行创建
# 列表的相关操作:
# 1、访问列表中元素  列表名[索引]
print("英雄为:",herolist[1],herolist[0])
# 2、添加元素 append 是在列表的末尾进行添加元素
herolist.append('鲁班大师')
print('添加后的列表',herolist)
# 3、修改
herolist[3]="貂蝉"
print("修改后的列表",herolist)
# 4 删除
del herolist[4]
print("删除后的列表",herolist)

2 判断和循环

2.1 函数代码实例
### 函数交换两个变量
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)

2.2 判断语句

格式

if 要判断的条件:

满足条件时要执行的事情

代码实例
 if(a= 18:
    print("恭喜你成年了,可以去网吧了")
else:
    print('sorry,你还是个宝宝')

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