美文网首页
day9-作业

day9-作业

作者: 熙包包 | 来源:发表于2018-11-15 19:48 被阅读0次

    0.写一个匿名函数,判断指定的年是否是闰年

    leap_year = lambda year :(year % 4 ==0 and year % 100 !=0) or year % 400 ==0
    print(leap_year(1900))
    print(leap_year(2004))
    print(leap_year(2000))
    

    1.写一个函数将一个指定的列表中的元素逆序( 如[1, 2, 3] -> [3, 2, 1])(注意:不要使 表自带的逆序函数)

    def reverse(list1: list):
          length = len(list1)
          for index in range(length//2):
               list1[index], list1[length-1-index] = list1[length-1-index], list1[index]
    
    list1 = [1, 2, 3]
    for index in range(len(list1)//2):
        
    

    2.写一个函数,提取出字符串中所有奇数位上的字符

    def odd_number(str1:str):
        enpty_str = ""
        str1_len = len(str1)
        for i in range(1,str1_len+1,2):
            enpty_str += str1[i-1]
        return enpty_str
    print(odd_number("1acds525796"))
    

    3.写一个函数,统计指定列表中指定元素的个数(不用列表自带的count方法)

    4.写一个函数,获取指定列表中指定元素的下标(如果指定元素有多个,将每个元素的下标都返回)

    例如: 列表是:[1, 3, 4, 1] ,元素是1, 返回:0,3

    5.写一个函数,能够将一个字典中的键值对添加到另外一个字典中(不使用字典自带的update方法)

    6.写一个函数,能够将指定字符串中的所有的小写字母转换成大写字母;所有的大写字母转换成小写字母(不能使用字符串相关方法)

    7.写一个函数,能够将指定字符串中的指定子串替换成指定的其他子串(不能使用字符串的replace方法)

    例如: func1('abcdaxyz', 'a', '') - 返回: '\bcd\xyz'

    8.实现一个输入自己的items方法,可以将自定的字典转换成列表。列表中的元素是小的列表,里面是key和value (不能使用字典的items方法)

    例如:{'a':1, 'b':2} 转换成 [['a', 1], ['b', 2]

    相关文章

      网友评论

          本文标题:day9-作业

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