day9-作业

  1. 编写函数,求1+2+3+…N的和
def zh_sum(n: int):
    count = 0
    for i in range(n+1):
        count += i
    print("和:", count)
  1. 编写一个函数,求多个数中的最大值
def zh_max(*nums: float):
    print("最大值:", max(nums))
  1. 编写一个函数,实现摇骰子的功能,打印N个骰子的点数和
from random import randint
def zh_dice(n: int):
    count = 0
    for _ in range(n):
        num = randint(1, 6)
        count += num
    print("{}个骰子的点数和:{}".format(n, count))
  1. 编写一个函数,交换指定字典的key和value。
    例如:dict1={'a':1, 'b':2, 'c':3} --> dict1={1:'a', 2:'b', 3:'c'}
def zh_swap(dict1: dict):
    new_dict = {}
    for item in dict1:
        value = dict1[item]
        new_dict[value] = item
    dict1 = new_dict
    print(dict1)
  1. 编写一个函数,提取指定字符串中所有的字母,然后拼接在一起产生一个新的字符串
    例如: 传入'12a&bc12d-+' --> 'abcd'
def zh_spl(str1: str):
    new_str = ''
    for item in str1:
        if 'A' <= item <= 'Z' or 'a' <= item <= 'z':
            new_str += item
    print(new_str)
  1. 写一个函数,求多个数的平均值
def zh_avg(*nums: float):
    sum1 = sum(nums)
    print("平均值:", sum1/len(nums))
  1. 写一个函数,默认求10的阶乘,也可以求其他数字的阶乘
def zh_fac(n=10):
    sum1 = 1
    for i in range(1, n+1):
        sum1 *= i
    print(sum1)
  1. 写一个自己的capitalize函数,能够将指定字符串的首字母变成大写字母
    例如: 'abc' -> 'Abc' '12asd' --> '12asd'
def zh_capitalize(str1: str):
    if 'a' <= str1[0] <= 'z':
        str1 = chr(ord(str1[0]) - 32) + str1[1:]
    print(str1)
  1. 写一个自己的endswith函数,判断一个字符串是否以指定的字符串结束
    例如: 字符串1:'abc231ab' 字符串2:'ab' 函数结果为: True
def zh_endswith(str1: str, str2: str):
    length = len(str2)
    if len(str1) >= length:
        if str1[-length:] == str2:
            print('True')
        else:
            print('False')
    else:
        print('False')
  1. 写一个自己的isdigit函数,判断一个字符串是否是纯数字字符串
    例如: '1234921' 结果: True
    '23函数' 结果: False
    'a2390' 结果: False
def zh_isdigit(str1: str):
    for item in str1:
        if not ('0' <= item <= '9'):
            print("False")
            break
    else:
        print("True")
  1. 写一个自己的upper函数,将一个字符串中所有的小写字母变成大写字母
    例如: 'abH23好rp1' 结果: 'ABH23好RP1'
def zh_upper(str1: str):
    new_str1 = ''
    for index in range(len(str1)):
        if 'a' <= str1[index] <= 'z':
            new_str1 += chr(ord(str1[index]) - 32)
        else:
            new_str1 += str1[index]
    str1 = new_str1
    print(str1)
  1. 写一个自己的rjust函数,创建一个字符串的长度是指定长度,
    原字符串在新字符串中右对齐,剩下的部分用指定的字符填充
    例如: 原字符:'abc' 宽度: 7 字符:'^' 结果: '^^^^abc'
    原字符:'你好吗' 宽度: 5 字符:'0' 结果: '00你好吗'
def zh_rjust(str1: str, length: int, str2: str):
    length1 = len(str1)
    new_str1 = ''
    for _ in range(length - length1):
        new_str1 += str2
    print(new_str1 + str1)
  1. 写一个自己的index函数,统计指定列表中指定元素的所有下标,如果列表中没有指定元素返回-1
    例如: 列表: [1, 2, 45, 'abc', 1, '你好', 1, 0] 元素: 1 结果: 0,4,6
    列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'] 元素: '赵云' 结果: 0,4
    列表: ['赵云', '郭嘉', '诸葛亮', '曹操', '赵云', '孙权'] 元素: '关羽' 结果: -1
def zh_index(list1: list, item):
    new_str = ''
    for index in range(len(list1)):
        if list1[index] == item:
            new_str += str(index)
    if len(new_str):
        print(','.join(new_str))
    else:
        print(-1)
  1. 写一个自己的len函数,统计指定序列中元素的个数
    例如: 序列:[1, 3, 5, 6] 结果: 4
    序列:(1, 34, 'a', 45, 'bbb') 结果: 5
    序列:'hello w' 结果: 7
def zh_len(sequence):
    count = 0
    for _ in sequence:
        count += 1
    print(count)
  1. 写一个自己的max函数,获取指定序列中元素的最大值。如果序列是字典,取字典值的最大值
    例如: 序列:[-7, -12, -1, -9] 结果: -1
    序列:'abcdpzasdz' 结果: 'z'
    序列:{'小明':90, '张三': 76, '路飞':30, '小花': 98} 结果: 98
def zh_max(sequence):
    pass
    if type(sequence) == dict:
        sequence = list(sequence.values())
    if type(sequence) == set:
        sequence = list(sequence)
    max1 = sequence[0]
    for item in sequence:
        if item > max1:
            max1 = item
    print(max1)
  1. 写一个函数实现自己in操作,判断指定序列中,指定的元素是否存在
    例如: 序列: (12, 90, 'abc') 元素: '90' 结果: False
    序列: [12, 90, 'abc'] 元素: 90 结果: True
def zh_in(sequence, element):
    for item in sequence:
        if item == element:
            print("True")
            break
    else:
        print("False")
  1. 写一个自己的replace函数,将指定字符串中指定的旧字符串转换成指定的新字符串
    例如: 原字符串: 'how are you? and you?' 旧字符串: 'you' 新字符串:'me' 结果: 'how are me? and me?'
def zh_replace(str1: str, str2: str, str3: str):
    length = len(str2)
    new_str1 = ''
    index = 0
    while index < len(str1):
        if str1[index: index+length] == str2:
            new_str1 += str3
            index += length
        else:
            new_str1 += str1[index]
            index += 1
    print(new_str1)
  1. 写四个函数,分别实现求两个列表的交集、并集、差集、对称差集的功能
    a.两个列表的交
def zh_intersection(list1: list, list2: list):
    new_list = []
    for item in list1:
        if item in list2:
            if item not in new_list:
                new_list.append(item)
    print(new_list)

b.两个列表的并集

def zh_union(list1: list, list2: list):
    new_list = []
    for item in list1:
        if item not in new_list:
            new_list.append(item)
    for item in list2:
        if item not in new_list:
            new_list.append(item)
    print(new_list)

c.两个列表的差集

def zh_diff(list1: list, list2: list):
    new_list = []
    for item in list1:
        if item not in list2:
            new_list.append(item)
    print(new_list)

d.两个列表的对称差集

def zh_com(list1: list, list2: list):
    new_list = []
    list_sum = list1 + list2
    for item in list_sum:
        if not (item in list1 and item in list2):
            new_list.append(item)
    print(new_list)
zh_com(list1, list2)

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