Python
佳乐一百
这个作者很懒,什么都没留下…
展开
-
用Python把数组从小到大排序(选择排序)
用Python把数组从小到大排序(选择排序)代码:#coding=utf-8‘’’#选择排序Created on 2019年12月8日@author: LWJ‘’’def findSmallest(arr):smallest = arr[0] #存储最小的值smallest_index = 0 #存储最小元素的索引for i in...原创 2019-12-08 22:33:27 · 12924 阅读 · 0 评论 -
用Python查找数组中的最小值,并返回它的索引(下标)
#coding=utf-8‘’’查找数组中的最小值,并返回它的索引Created on 2019年12月8日@author: LWJ‘’’def findSmallest(arr):smallest = arr[0] #存储最小的值smallest_index = 0 #存储最小元素的索引for i in range(1,len(arr)):...原创 2019-12-08 22:16:50 · 12804 阅读 · 1 评论 -
用Python的二分查找法找出想要找的数字的坐标
创建项目:输入代码:#用二分查找法找出想要找的数字的坐标def binary_search(list,item):low = 0 #low和high用于跟踪要在其中查找的部分high = len(list)-1while low <= high: #只要范围没有缩小到只包含一个元素mid = (low+high) ...原创 2019-12-08 21:31:51 · 512 阅读 · 0 评论 -
Python基础语法
原创 2019-12-03 20:47:09 · 63 阅读 · 0 评论 -
Python的安装配置使用
原创 2019-12-03 20:44:53 · 79 阅读 · 0 评论