day10作业

1.

编写函数,求1 + 2 + 3 +…N的和


def sum1(N):
    num2 = 0
    for num in range(N):
        num2 += num
    return num2

2.

编写一个函数,求多个数中的最大值

def max_num(*num3):
    num4 = max(*num3)
    return num4

3.

编写一个函数,实现摇骰子的功能,打印N个骰子的点数和

def sum2(N):
    import random
    sum3 = 0
    for count in range(0,N):
        num5 = random.randint(1, 6)
        sum3 += num5
        return sum3

4.

编写一个函数,交换指定字典的key和value。

例如: dict1 = {'a': 1, 'b': 2, 'c': 3} --> dict1 = {1: 'a', 2: 'b', 3: 'c'}

def change(**dict1):
    new_dict = {}
    for key1 in dict1:
       new_dict[dict1[key1]] = key1
    return new_dict

5.

编写一个函数,提取指定字符串中所有的字母,然后拼接在一起产生一个新的字符串

例如: 传入

'12a&bc12d-+' --> 'abcd'


def tiqu(str1:str):
    new_str1 = ''
    for value2 in str1:
        if 'a'<= value2 <='z' or 'A'<= value2 <='Z':
            new_str1 += value2
    return new_str1

6.

写一个函数,求多个数的平均值

def average(*num):
    count = 0
    num2 = 0
    for num1 in num:
        count += 1
        num2 += num1
    return num2/count

7.

写一个函数,默认求10的阶乘,也可以求其他数字的阶乘

def jiecheng(num=10):
    num2 = 1
    for num1 in range(num):
        num2 *= num1
    return num2

== == == == == == == == == == =注意:以下方法不能使用系统提供的方法和函数,全部自己写逻辑 == == == == == == ==

8.

写一个自己的capitalize函数,能够将指定字符串的首字母变成大写字母

例如: 'abc' -> 'Abc' '12asd' --> '12asd'

ord1 = ord('a') - ord('A')
def capitalize1(str1:str):
    new_str = ''
    for char in str1:
        if 'a' <= char <= 'z':
            char = chr(ord(char) - ord1)
            new_str += char
        else:
            new_str += char
    return new_str

9.

写一个自己的endswith函数,判断一个字符串是否已指定的字符串结束

例如: 字符串1:'abc231ab'

字符串2: 'ab'

函数结果为: True

字符串1: 'abc231ab'

字符串2: 'ab1'

函数结果为: False

def endswith1(str1:str, str2:str):
    n = len(str2)
    result = ''
    for x in range(-n-1,-1):
        if str1[x] == str2[x]:
            return True
        elif str1[x] != str2[x]:
            return False

10.

写一个自己的isdigit函数,判断一个字符串是否是纯数字字符串

例如: '1234921'

结果: True

'23函数'

结果: False

'a2390'

结果: False

def isdigit1(str1:str):
    for index in str1:
        if '0' <= index <= '9':
            return True
        else:
            return False


print(isdigit1('1234'))

11.

写一个自己的upper函数,将一个字符串中所有的小写字母变成大写字母

例如: 'abH23好rp1'

结果: 'ABH23好RP1'

def upper1(str1: str):
    ord1 = ord('a') - ord('A')
    new_str = ''
    for index in range(0, len(str1)):
        if 'a' <= str1[index] <= 'z':
            str1[index] = chr(ord(str1[index]) - ord1)
            new_str += str1[index]
        else:
            new_str += str1[index]
    return new_str

12.

写一个自己的rjust函数,创建一个字符串的长度是指定长度,原字符串在新字符串中右对齐,剩下的部分用指定的字符填充

例如: 原字符:'abc'

宽度: 7

字符: '^'

结果: '^^^^abc'

原字符: '你好吗'

宽度: 5

字符: '0'

结果: '00你好吗'

def rjust1(str0:str, a, b:str):
    new_str1 = b * (a - len(str0)) + str0
    return new_str1


print(rjust1('abc', 7, '*'))

13.

写一个自己的index函数,统计指定列表中指定元素的所有下标,如果列表中没有指定元素返回 - 1

例如: 列表: [1, 2, 45, 'abc', 1, '你好', 1, 0]

元素: 1

结果: 0, 4, 6

列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权']

元素: '赵云'

结果: 0, 4

列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权']

元素: '关羽'

结果: -1

def index(list1:list, x):
    result = ''
    for a in range(len(list1)):
        if list1[a] == x:
            result += str(a)
    if result == '':
        return -1
    else:
        return result



14.

写一个自己的len函数,统计指定序列中元素的个数

例如: 序列:[1, 3, 5, 6]

结果: 4

序列: (1, 34, 'a', 45, 'bbb')

结果: 5

序列: 'hello w'

结果: 7

def len1(x):
    count = 0
    for a in x:
        count += 1
    return count


print(len1([1,2,3,4]))

15.

写一个自己的max函数,获取指定序列中元素的最大值。如果序列是字典,取字典值的最大值

例如: 序列:[-7, -12, -1, -9]

结果: -1

序列: 'abcdpzasdz'

结果: 'z'

序列: {'小明': 90, '张三': 76, '路飞': 30, '小花': 98}

结果: 98

def max1(x):
    if type(x) != dict:
        for char in x:
            if char1 < char:
                char1 = char
        return char1
    else:
        char1 = x
        for char in x.values:
            if char1 < char:
                char1 = char
        return char1

16.

写一个函数实现自己in操作,判断指定序列中,指定的元素是否存在

例如: 序列: (12, 90, 'abc')

元素: '90'

结果: False

序列: [12, 90, 'abc']

元素: 90

结果: True

def in1(list1, x):
    for char in list1:
        if char == x:
            return True
        else:
            return False

17.

写一个自己的replace函数,将指定字符串中指定的旧字符串转换成指定的新字符串

例如: 原字符串: 'how are you? and you?'

旧字符串: 'you'

新字符串: 'me'

结果: 'how are me? and me?'

def replace1(str1,str2,str3):
    num1 = 0
    num2 = len(str2)
    new_str = ''
    while num1 <= len(str1) - 1:
        if str1[num1::num2] == str2:
            new_str += str3
            num1 += num2
            num2 += num2
        else:
            new_str += str1[num1]
            num1 += 1
            num2 += 1
    return new_str

18.

写四个函数,分别实现求两个列表的交集、并集、差集、补集的功能

交集

def jiaoji(list1, list2):
    set1 = set(list1)
    set2 = set(list2)
    set3 = set1 | set2
    new_list = list(set3)
    return new_list

并集

def bingji(list1, list2):
    set1 = set(list1)
    set2 = set(list2)
    set3 = set1 & set2
    new_list = list(set3)
    return new_list

差集

def bingji(list1, list2):
    set1 = set(list1)
    set2 = set(list2)
    set3 = set1 - set2
    new_list = list(set3)
    return new_list

补集

def bingji(list1, list2):
    set1 = set(list1)
    set2 = set(list2)
    set3 = set1 ^ set2
    new_list = list(set3)
    return new_list

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

func1 = lambda year:'是闰年'if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0 else'不是闰年'

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

def nixu(list1):
    new_list = []
    for char in range(-1,(-len(list1)-1),-1):
        new_list.append(list1[char])
    return new_list

print(nixu([1, 2, 3]))

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

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

def index1(list1, x):
    num = []
    for index in range(len(list1)):
        if list1[index] == x:
            num.append(index)
    return num

print(index1([1, 3, 4, 1], 1))

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


def add_item(dict1, dict2):
    for key in dict1:
        dict2[key] = dict1[key]
    return dict2

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

def change(str1):
    new_str = ''
    for x in str1:
        if 'a' <= x <='z':
            new_str += chr(ord(x)-32)
        if 'A' <= x <= 'Z':
            new_str += chr(ord(x)+32)
        else:
            new_str += x
    return new_str

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

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

def items1(dict1):
    new_list = []
    for items2 in dict1:
        new_list += [items2,dict1[items2]]
    return [new_list]

25. 写一个函数,实现学生的添加功能:

=============添加学生================

输入学生姓名: 张胜

输入学生年龄: 23

输入学生电话: 15634223

===添加成功!

'姓名':'张胜', '年龄':23, '电话:15634223', '学号':'0001'

=====================================

1.继续

2.返回

请选择: 1

=============添加学生================

输入学生姓名: 李四

输入学生年龄: 18

输入学生电话: 157234423

===添加成功!

'姓名':'张胜', '年龄':23, '电话:15634223', '学号':'0001'

'姓名':'李四', '年龄':18, '电话:157234423', '学号':'0002'

=====================================

1.继续

2.返回

请选择:

def add_student(choice=1):
    num = 0
    stu_list = []
    while choice == 1:
        print('=============添加学生================')
        name = str(input('输入学生姓名:'))
        age = int(input('输入学生年龄:'))
        tel = str(input('输入学生电话:'))
        num += 1
        print('=============添加成功================')
        stu_list.append({'姓名':name, '年龄':age, '电话':tel, '学号': str(num).zfill(4)})
        for student in stu_list:
            print(str(student))
        print('=====================================')
        print('1.继续')
        print('2.返回')
        choice = int(input('请选择:'))
    for student in stu_list:
        print(str(student))

add_student()


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