day9-集合作业

  1. 用三个集合表示三门学科的选课学生姓名(一个学生可以同时选多门课)

    math = {'坤坤', '鲲鲲', '鸽鸽', '小黑子', '只因'}
    english = {'坤坤', '真正的man', '小黑子', '鸡爷'}
    science = {'鲲鲲', '真正的man', '干嘛', '哎哟', '小黑子'}
    

    a. 求选课学生总共有多少人

    score = math | english | science
    print(len(score))
    

    b. 求只选了第一个学科的人的数量和对应的名字

    score = math - english - science
    print(len(score), score)
    

    c. 求只选了一门学科的学生的数量和对应的名字

    count = 0
    score = list(math) + list(english) + list(science)
    list1 = []
    for x in score:
        if score.count(x) == 1:
            list1.append(x)
            count += 1
    print(count, list1)
    

    d. 求只选了两门学科的学生的数量和对应的名字

    count = 0
    score = list(math) + list(english) + list(science)
    list1 = []
    for x in score:
        if score.count(x) == 2:
            list1.append(x)
            count += 1
    print(int(count/2), set(list1))
    

    e. 求选了三门学生的学生的数量和对应的名字

    score = math & english & science
    print(len(score), score)
    
  2. 获取列表中出现次数最多的元素

    例如:nums = [1, 2, 3,1,4,2,1,3,7,3,3] —> 打印:3

    nums = [1,2,2,1,3] --> 打印1、2

    # nums = [1, 2, 3,1,4,2,1,3,7,3,3]
    nums  = [1,2,2,1,3]
    s1 = set(nums)
    max = 0
    content = []
    for i in s1:
        if max < nums.count(i):
            max = nums.count(i)
            content.clear()
            content.append(i)
        elif max == nums.count(i):
            content.append(i)
    print('出现次数最多的元素是:',content)
    
    
  3. 实现给定一个日期,判断这个日期是今年第几天的程序(尝试

    例如:2022/12/31 --> 今年第365天;2022/1/1 --> 今年第1天

    
    
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值