Skip to content

yuansx/python

 
 

Repository files navigation

1.环境的搭建

1.python环境安装和配置

2.git安装

3.python ide代码编辑器,如pyCharm

2.基本数据类型

1.整型

2.浮点型

3.字符串

4.列表 list set

5.字典 map

6.自定义类型 class

3.运算符

1.+ - * / %

2.and or

4.输入输出函数

1.print

2.input

5.格式化输出

整型(int,long) %d

浮点型(float,double) %f %g

字符串(string) %s

其他类型(list,map) 通过str()函数把q它转换为字符串再%s打印

6.强制类型转换

转换为整型 int()

转换为字符串 str()

以此类推

7.流程控制

7.1 条件控制

7.1.1 if

if score > 90:
    print('A')
elif score > 80:
    print('B')
else:
    print('B')

7.2 循环

7.2.1 for

for elem in list:
    print(elem)

7.2.2 while

a = 1
b = 3
while a < b:
    print('a < b')
    a++;

7.2.3 continue

7.2.4 break

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%