- 写一个函数将一个指定的列表中的元素逆序( 如[1, 2, 3] -> [3, 2, 1])(注意:不要使 表自带的逆序函数)
def my_reverse(list1: list):
"""
指定的列表中的元素逆序
:param list1:
:return:
"""
return list1[::-1]
print(my_reverse([1,23,3]))
- 写一个函数,提取出字符串中所有奇数位上的字符
def my_char(str1: str):
"""
提取出字符串中所有奇数位上的字符
:param str1:
:return:
"""
new_str = ''
for index in range(len(str1)):
if index & 1:
new_str += str1[index]
return new_str
print(my_char('0123456'))
- 写一个匿名函数,判断指定的年是否是闰
is_leap_year = lambda year:True if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0 else False
print(is_leap_year(1900))
- 写函数,提去字符串中所有的数字字符。
例如: 传入'ahjs233k23sss4k' 返回: '233234'
def my_digit(str1: str):
"""
提取字符串中所有的数字字符
:param str1:
:return:
"""
new_str = ''
for x in str1:
if '0' <= x <= '9':
new_str += x
return new_str
print(my_digit('23dssd325999'))
- 写一个函数,获取列表中的成绩的平均值,和最高分
def avg_and_max(list1: list):
"""
获取列表中的成绩的平均值,和最高分
:param list1:
:return:
"""
max_num = max(list1)
avg_num = sum(list1)/len(list1)
return avg_num,max_num
print(avg_and_max([1, 9, 10, 20]))
- 写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其作为新的列表返回给调用者
def my_list(sequence):
list1 = list(sequence)
new_list = []
for index in range(len(list1)):
if index & 1:
new_list.append(list1[index])
return new_list
print(my_list((1, 2, 3, 5)))
- 实现属于自己的字典update方法:用一个字典去更新另一个字典的元素(不能使用自带的update方法)
yt_update(字典1, 字典2)
def my_update(dict1, dict2):
dict2 = dict(dict2)
for key in dict2:
dict1[key] = dict2[key]
return dict1
movie1 = {'name' : '盗梦空间', 'type' : '卡通', 'time' : 109}
movie2 = [('score' , 7.9)]
print(my_update(movie1, movie2))
- 实现属于自己的items方法:将字典转换成列表,字典中的键值对转换成元祖。(不能使用items方法)
yt_items(字典)
例如:{'a': 1, 'b':2, 'c':3} ---> [('a', 1), ('b', 2), ('c', 3)]
def my_items(dict1 : dict):
list1 = []
for key in dict1:
list1.append((key, dict1[key]))
return list1
print(my_items({'name': '盗梦空间', 'type': '卡通', 'time': 109, 'score': 7.9}))
- 有一个列表中保存的所一个班的学生信息,使用max函数获取列表中成绩最好的学生信息和年龄最大的学生信息
all_student = [
{'name': '张三', 'age': 19, 'score': 90},
{'name': 'stu1', 'age': 30, 'score': 79},
{'name': 'xiaoming', 'age': 12, 'score': 87},
{'name': 'stu22', 'age': 29, 'score': 99}
]
注意: max和min函数也有参数key
all_student = [
{'name': '张三', 'age': 19, 'score': 90},
{'name': 'stu1', 'age': 30, 'score': 79},
{'name': 'xiaoming', 'age': 12, 'score': 87},
{'name': 'stu22', 'age': 29, 'score': 99}
]
def my_max_score_and_age (list1 : list):
max_score_student = max(list1, key =lambda x : x['score'])
max_age_student = max(list1, key =lambda x : x['age'])
return max_score_student, max_age_student
print(my_max_score_and_age(all_student))
网友评论