day10_homework

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

def my_sum(n):
    res = 0
    for i in range(1, n+1):
        res += i
    return res

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

def my_max(nums):
    res = nums[0]
    for i in nums[1:]:
        if res < i:
            res = i
    return res

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

import random

def dice_sum(n):
    res = []
    for i in range(n):
        res.append(random.randint(1, 6))
    print(res, sum(res))

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

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

def exchange_dict(dict_r):
    dict_key = []
    dict_value = []
    for i in dict_r:
        dict_key.append(i)
    for j in dict_r.values():
        dict_value.append(j)
    dict_r.clear()
    for x in range(len(dict_key)):
        dict_r.setdefault(dict_value[x], dict_key[x])
    return dict_r

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

例如: 传入'12a&bc12d-+' --> 'abcd'

def split_joint(string):
    str1 = []
    for i in string:
        if 'a' <= i <= 'z' or 'A' <= i <= 'Z':
            str1.append(i)
    str1 = ''.join(str1)
    return str1

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

def avg(nums):
    sum1 = 0
    for i in nums:
        sum1 += i
    res = sum1/len(nums)
    return res

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

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

def factorial(n=10):
    res = 1
    while n > 1:
        res *= n
        n -= 1
    return res

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

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

def my_capitalize(str1):
    str1 = list(str1)
    if 'a' <= str1[0] <= 'z':
        str1[0] = chr(ord(str1[0]) - 32)
    return str(''.join(str1))

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

例如: 字符串1:'abc231ab'
字符串2: 'ab'
函数结果为: True
字符串1: 'abc231ab'
字符串2: 'ab1'
函数结果为: False

def my_endswith(str1, str2):
    if str1[-len(str2):: 1] == str2:
        return True
    else:
        return False

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

例如: '1234921'
结果: True
'23函数'
结果: False
'a2390'
结果: False

def my_isdigit(str1):
    for i in str1:
        if not('0' <= i <= '9'):
            return False
    else:
        return True

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

例如: 'abH23好rp1'
结果: 'ABH23好RP1'

def my_upper(str1):
    str1 = list(str1)
    for i in range(len(str1)):
        if 'a' <= str1[i] <= 'z':
            str1[i] = chr(ord(str1[i])-32)
    return ''.join(str1)

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

例如: 原字符:'abc'
宽度: 7
字符: '^'
结果: '^^^^abc'
原字符: '你好吗'
宽度: 5
字符: '0'
结果: '00你好吗'

def my_rjust(str1, char, length):
    str1 = list(str1)
    str2 = []
    for i in range(length-len(str1)):
        str2 += char
    str1 = str2 + str1
    return ''.join(str1)

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

例如: 列表: [1, 2, 45, 'abc', 1, '你好', 1, 0]
元素: 1
结果: 0, 4, 6
列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权']
元素: '赵云'
结果: 0, 4
列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权']
元素: '关羽'
结果: -1

def my_index(list1, item):
    count = []
    for ind in range(len(list1)):
        if item == list1[ind]:
            count.append(ind)
    if len(count) != 0:
        return count
    else:
        return -1

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

例如: 序列:[1, 3, 5, 6]
结果: 4
序列: (1, 34, 'a', 45, 'bbb')
结果: 5
序列: 'hello w'
结果: 7

def my_len(nums):
    count = 0
    for _ in nums:
        count += 1
    return count

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

例如: 序列:[-7, -12, -1, -9]
结果: -1
序列: 'abcdpzasdz'
结果: 'z'
序列: {'小明': 90, '张三': 76, '路飞': 30, '小花': 98}
结果: 98

def my_max(nums):
    if type(nums) == dict:
        return max(nums.values())
    else:
        return max(nums)

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

例如: 序列: (12, 90, 'abc')
元素: '90'
结果: False
序列: [12, 90, 'abc']
元素: 90
结果: True

def my_in(nums, num):
    for i in nums:
        if i == num:
            return True
    else:
        return False

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

例如: 原字符串: 'how are you? and you?'
旧字符串: 'you'
新字符串: 'me'
结果: 'how are me? and me?'

def my_replace(str1, old_str, new_str):
    list1 = str1.split(old_str)
    list2 = []
    for item in list1:
        list2.append(item)
        list2.append(new_str)
    list2.pop()
    return ''.join(list2)

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

def my_intersection(list1, list2):
    if len(list1) > len(list2):
        list1, list2 = list2, list1
    list3 = []
    for i in list1:
        for j in list2:
            if i == j:
                list3.append(i)
    list3 = list(set(list3))
    return list3
def my_union(list1, list2):
    list3 = list(set(list1 + list2))
    return list3
print(my_union([1,3,5,7], [1,2,4,5,6,7]))

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

leap = lambda y: (y % 400 == 0) or (y % 4 == 0 and y % 100 != 0)

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

def my_reversed(list1):
    list2 = []
    for i in list1[::-1]:
        list2.append(i)
    return list2

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

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

def new_index(list1, item):
    count = []
    for ind in range(len(list1)):
        if item == list1[ind]:
            count.append(ind)
    if len(count) != 0:
        return count
    else:
        return -1

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

def my_update(dict1, dict2):
    for i in dict2:
        dict1[i] = dict2[i]
    return dict1

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

def exchange_up_low(str1: str):
    list1 = list(str1)
    for index in range(len(list1)):
        if 'a' <= list1[index] <= 'z':
            list1[index] = chr(ord(list1[index]) - 32)
        elif 'A' <= list1[index] <= 'Z':
            list1[index] = chr(ord(list1[index]) + 32)
    return ''.join(list1)

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

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

def my_items(dict1: dict):
    list1 = []
    for key in dict1:
        list2 = []
        list2.append(key)
        list2.append(dict1[key])
        list1.append(list2)
    return list1

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

=============添加学生================
输入学生姓名: 张胜
输入学生年龄: 23
输入学生电话: 15634223
===添加成功!===
'姓名':'张胜','年龄':'23','电话':'15634223','学号':'0001'
1.继续
2.返回
请选择: 1
=============添加学生================
输入学生姓名: 李四
输入学生年龄: 18
输入学生电话: 157234423
===添加成功!
'姓名':'张胜', '年龄':23, '电话:15634223', '学号':'0001'
'姓名':'李四', '年龄':18, '电话:157234423', '学号':'0002'
1.继续
2.返回
请选择:

print('=============添加学生================')
stu_name = input('输入学生姓名:')
stu_age = input('输入学生年龄:')
stu_tel = input('输入学生电话:')
stu_list = []
stu_dict = {}
stu_dict['姓名'] = stu_name
stu_dict['年龄'] = stu_age
stu_dict['电话'] = stu_tel
# stu_dict['学号'] =
print('===添加成功!')
print(stu_dict)
menu1 = '''
=====================================
1.继续
2.返回
请选择:    
'''
print(menu1)

你可能感兴趣的:(day10_homework)