编写一个Python程序,找出列表中第n小的整数。
- 定义函数
find_nth_smallest()
,该函数接受整数列表numbers_list
和整数n
作为参数。 - 在函数内部,返回列表中第
n
小的整数。 - 如果
n
大于列表的长度,则返回None
。
def find_nth_smallest(numbers_list, n):
if n>len(numbers_list):
return None
else:
for i in range(n-1):
numbers_list.remove(min(numbers_list))#去除列表里最小的数,并进行n-1次,而最后输出的就是我们所需要的第n小的数字。
return min(numbers_list)
# 此处编写你的代码
# 将输入的整数转换为列表
numbers_list = list(map(int, input().split()))
# 获取n的输入
n = int(input())
# 调用函数
print(find_nth_smallest(numbers_list, n))
介绍一些知识点:
(1)Python 的字符串、列表、元组和字典等数据结构都支持索引操作,但集合和字典不支持索引、切片、相加和相城操作。
(2)map(function,iterable)函数的用法:function-我们指定的函数(或数据类型),可以是python内置的,也可以是自定义的。iterable-可迭代的对象,例如列表,元组,字符串等。
标签:Python,编程,list,整数,列表,入门级,numbers,find From: https://blog.csdn.net/2301_80570929/article/details/137275714