美文网首页
2019-01-05

2019-01-05

作者: 匿隱 | 来源:发表于2019-01-08 12:08 被阅读0次
    1. 写一个函数将一个指定的列表中的元素逆序( 如[1, 2, 3] -> [3, 2, 1])(注意:不要使 表自带的逆序函数)
    def ro_element(list1:list):
        lenth = len(list1)
        for index in range(lenth //2):
            list1[index],list1[lenth-1-index] = list1[lenth -1 -index],list1[index]
        return list1
    
    
    print(ro_element([0,2,4,7,8,9,11,22,32]))
    
    
    1. 写一个函数,提取出字符串中所有奇数位上的字符
    def odd_number(str1):
        str2 = str1[1::2]
        return str2
    
    
    str1 = input('请输入一串字符串:')
    print('奇数位上的字符为:', odd_number(str1))
    
    
    1. 写一个匿名函数,判断指定的年是否是闰
    leap_year = lambda x : x % 400 ==0 or (x%4 == 0 and x%100 != 0)
    
    print(leap_year(2004))
    

    4.写函数,提去字符串中所有的数字字符。
    例如: 传入'ahjs233k23sss4k' 返回: '233234'

    def sum1(str2):
        list1 = []
        for x in str2:
            if x >='0' and x<='9':
                list1.append(x)
    
        return ' '.join(list1)
    
    print(sum1('wqweqweqwqss12212e2112'))
    
    1. 写一个函数,获取列表中的成绩的平均值,和最高分
    def mean_max(*nums):
        sum1 = sum(nums)
        mean1 = sum1 / len(nums)
        n = 0
        for x in range(len(nums)):
            if n < nums[x]:
                n = nums[x]
        return mean1,n
    
    1. 写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其作为新的列表返回给调用者
    def ji_index(*n):
        list1 = list(n)
        list2 = []
        for x in range(len(list1)):
            if x & 1:
                list2.append(list1[x])
        return list2
    
    
    1. 实现属于自己的字典update方法:用一个字典去更新另一个字典的元素(不能使用自带的update方法)
      yt_update(字典1, 字典2)
    
    
    1. 实现属于自己的items方法:将字典转换成列表,字典中的键值对转换成元祖。(不能使用items方法)
      yt_items(字典)

      例如:{'a': 1, 'b':2, 'c':3} ---> [('a', 1), ('b', 2), ('c', 3)]

    
    
    1. 有一个列表中保存的所一个班的学生信息,使用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

    
    

    相关文章

      网友评论

          本文标题:2019-01-05

          本文链接:https://www.haomeiwen.com/subject/sgcdrqtx.html