- 写一个函数将一个指定的列表中的元素逆序( 如[1, 2, 3] -> [3, 2, 1])(注意:不要使 表自带的逆序函数)
def nx_list1(list2):
return list2[::-1]
print(nx_list1([1,2,3]))
# [3, 2, 1]
- 写一个函数,提取出字符串中所有奇数位上的字符
def nx_str1(str2):
return str2[1::2]
print(nx_str1('sktt1'))
# kt
- 写一个匿名函数,判断指定的年是否是闰
def leap_year(year1):
if year1 % 4 == 0 and year1 % 100 != 0 or year1 % 400 == 0:
print('是闰年')
else:
print('不是闰年')
- 写函数,提去字符串中所有的数字字符。
例如: 传入'ahjs233k23sss4k' 返回: '233234'
- 写一个函数,获取列表中的成绩的平均值,和最高分
def x_score(list1):
list1.sort()
print('最高分:', list1[-1])
count = 0
for x in list1:
count += x
print('平均值:',count/len(list1))
- 写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其作为新的列表返回给调用者
- 实现属于自己的字典update方法:用一个字典去更新另一个字典的元素(不能使用自带的update方法)
yt_update(字典1, 字典2)
def change(dict1,dict2):
for x in dict1:
dict2[x] = dict1[x]
return dict2
print(change({'q':1,'w':2},{'e':3,'r':4,'t':5}))
网友评论