python学习中小程序

Posted wwb-1024

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习中小程序相关的知识,希望对你有一定的参考价值。

冒泡排序:

 1 #!/usr/bin/python 
 2 # coding:utf8
 3 # 冒泡排序
 4 def sort1(list1):
 5     for i in range(len(list1)):
 6         isEnd = True
 7         for j in range(len(list1)-1,0,-1):
 8             if list1[j]<list1[j-1]:
 9                 tmp = list1[j]
10                 list1[j] = list1[j-1]
11                 list1[j-1] = tmp
12                 isEnd = False
13         if isEnd:
14             break
15 16 17 18 list1 = [5,3,23,67,2,56,45,98,239,9] 19 sort1(list1) 20 print list1

运行结果:

[2, 3, 5, 9, 23, 45, 56, 67, 98, 239]




以上是关于python学习中小程序的主要内容,如果未能解决你的问题,请参考以下文章

python 机器学习有用的代码片段

VS Code中小程序与Vue常用插件合集(前端合集)

学习笔记:python3,代码片段(2017)

Python 常用模块学习

Python学习 :函数

在PaddlePaddle中的Notebook代码片段