python基础教学day9-作业

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

def sum1_func(N):
    sum1 = 0
    for x in range(1, N+1):
        sum1 += x
    print(sum1)

sum1_func(100)

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

def max_nums(*nums):
    max_num = max(nums)
    print(max_num)


max_nums(-1, -3, -4, -9, -7)

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

def dice_sums(n):
    sum1 = 0
    for _ in range(n):
        import random
        num = random.randint(1, 6)
        print('骰子点数:%d' % num)
        sum1 += num
    print(sum1)

dice_sums(3)

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

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

def exchange_dict (dict1:dict):
    dict2 = dict1.copy()
    dict1.clear()
    for x in dict2:
        dict1[dict2[x]] = x
    print(dict1)


exchange_dict({'a': 1, 'b': 2, 'c': 3})

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

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

def chr_func1(str1):
    for item in str1:
        if 'a' <= item <= 'z' or 'A' <= item <= 'Z':
            print(item, end='')


chr_func1('12a&bc12d-+')

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

def avg_func1(*nums):
    avg1 = sum(nums)/len((nums))
    print(avg1)


avg_func1(1, 2, 3, 4)

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

def factorial_func1(x=10):
    acc = 1
    for i in range(1,x+1):
        acc *= i
    print(acc)


factorial_func1()

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

def capitalize_func1(str1):
    if 'a' <= str1[0] <= 'z':
        new_word = chr(ord(str1[0])-32)
        str1 = new_word + str1[1:]
        print(str1)
    else:
        print(str1)


capitalize_func1('1aBC123a')

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

def endswith_func(str1, str2):
    n = len(str2)
    for i in range(-1, -n-1, -1):
        if not(str1[i] == str2[i]):
            print('False')
            break
    else:
        print('True')



endswith_func('abc231abd', '1abd')

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

def isdigit_func(str1):
    for item in str1[0:]:
        if not('0' <= item <= '9'):
            print('False')
            break
    else:
        print('True')



isdigit_func('91234')

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

def upper_func1(str1):
    for item in str1:
        if 'a'<= item <= 'z':
            item =chr(ord(item) - 32)
            print(item, end='')
        else:
            print(item, end='')

upper_func1('abH23好rp1')

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

def rjust_func1(original_char, width, char):
    n = width-len(original_char)
    new_char =char * n + original_char
    print(new_char)


rjust_func1('abc', 7, '^')
rjust_func1('你好吗', 7, '0')

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

def index_func1(list1, item1):
    n = len(list1)
    count = 0
    for i in range(n):
        #print(type(list1[i]))
        if list1[i] == item1:
            count += 1
            print(i, end=' ')
    if count ==0:
        print('-1')




index_func1 ([1, 2, 45, 'abc', 1, '你好', 1, 0], 9)

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

def len_func1(orders):
    sum1 = 0
    for item in orders:
        sum1 += 1
    print(sum1)

len_func1([1, 3, 5, 6])
len_func1([1, 33, 'a', 45, 'bbb'])

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

def max_func1(orders):
    if type(orders) == dict:
        for key in orders:
            max1 = orders[key]
        for key in orders:
            if max1 < orders[key]:
                max1 = orders[key]
        print(max1)
    else:
        max1 = orders[0]
        for item in orders:
            if max1 <= item:
                max1 = item
        print(max1)

max_func1([-7, -12, -1, -9])
max_func1('abcdpzasdz')
max_func1({'小明':90, '张三': 76, '路飞':30, '小花': 98} )

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

def in_func1(orders, items):
    for item in orders:
        if items == item:
            print('True')
            break
    else:
        print('False')
in_func1((12, 90, 'abc'), '90')

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

def replace_func1(str1, old_str, new_str):
    for i in range(len(str1)):
        if str1[i:i+len(old_str)] == old_str:
            str1 = str1[:i]+new_str+str1[i+len(old_str):]
    print(str1)

replace_func1('how are you? and you?', 'you', 'me')

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

def list_func1(list1, list2):
    new_list = []
    for item1 in list1:
        for item2 in list2:
            if item1 == item2:
                new_list.append(item1)
    print(new_list)


list_func1([1, 2, 2, 3, 3, 4], [3, 4, 5, 6])

def list_func2(list1, list2):
    new_list = []
    for item1 in list1:
        new_list.append(item1)
    for item2 in list2:
        if item2 not in list2:
            new_list.append(item2)
    print(new_list)


list_func2([1, 2, 2, 3, 3, 4], [3, 4, 5, 6])  


def list_func3(list1, list2):
    new_list = []
    for item1 in list1:
        new_list.append(item1)
    for item2 in list2:
        if item2 in list1:
            new_list.remove(item2)
    print(new_list)


list_func3([1, 2, 2, 3, 3, 4], [3, 4, 5, 6])

def list_func4(list1, list2):
    new_list = []
    for item1 in list1:
        new_list.append(item1)
        if item1 in list2:
            new_list.remove(item1)
    print(1111, new_list)
    for item2 in list2:
        if item2 not in list1:
            new_list.append(item2)
    print(new_list)


list_func4([1, 2, 2, 3, 3, 4], [3, 4, 5, 6])  # 对称差集
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,324评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,356评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,328评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,147评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,160评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,115评论 1 296
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,025评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,867评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,307评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,528评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,688评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,409评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,001评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,657评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,811评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,685评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,573评论 2 353

推荐阅读更多精彩内容