day10 作业

#1.写一个函数将一个指定的列表中的元素逆序(如[1, 2, 3] -> [3, 2, 1])(注意:不要使  表自带的逆序函数)
def nx_list(list):
      list1 = list[::-1]
      print(list1)
list = [1, 2, 3, 4]
nx_list(list)
#2.写一个函数,提取出字符串中所有奇数位上的字符
def js_str(str2):
     str1 = str2[::2]
     print(str1)

str2 =  'zzzcxccsdad'
js_str(str2)
#3.写一个匿名函数,判断指定的年是否是闰
# zzz = lambda year:'闰年' if n % 4 == 0 and n % 100 != 0  else '非闰年'
# n = 2012
# print(zzz(n))
#5.写函数, 利用递归获取斐波那契数列中的第10个数,并将该值返回给调用者。
#6.写一个函数,获取列表中的成绩的平均值,和最高分
def ave_max(list):
    zs = 0
    for pjs in list:
        zs += pjs
        ave = zs/len(list)
    print(ave)
    max1 = max(list)
    print(max1)
n1 = [1, 2, 3, 4]
ave_max(n1)
#7.写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其作为新的列表返回给调用者

def js(listn):
     index2 = []
     for index1 in listn[1::2]:
        index2.append(index1)
     print(index2)
n = [1, 2, 3, 4]
js(n)
#8.实现属于自己的字典update方法:用一个字典去更新另一个字典的元素(不能使用自带的update方法)yt_update(字典1, 字典2)
def update_dict1(basic_dict1,new_dict1):
    for key1 in new_dict1:
        basic_dict1[key1] = new_dict1[key1]
    return basic_dict1

basic_dict1 ={'a': 1,'b': 2, 'c':3}
new_dict1 = {'a': 4, 'd':5, 'e':6}
print(update_dict1(basic_dict1,new_dict1))

9.实现属于自己的items方法:将字典转换成列表,字典中的键值对转换成元祖。(不能使用items方法)yt_items(字典)例如:{'a': 1, 'b': 2, 'c': 3} - --> [('a', 1), ('b', 2), ('c', 3)]
def chang_tuple_list(dict1):
    list1 = []
    for key1 in dict1:
        tuple1 = (key1, dict1[key1])
        print(tuple1)
        list1.append(tuple1)
    return list1
  dict1 = {'a': 1, 'b': 2, 'c': 3}
  print(chang_tuple_list(dict1))

你可能感兴趣的:(day10 作业)