新月 2023-04-18 14:15 采纳率: 100%
浏览 21
已结题

需要解答python

img

img


大一文科python学不懂,想我来个热心人士解答问题 ,非常感谢

  • 写回答

1条回答 默认 最新

  • Dick_不周 2023-04-18 15:07
    关注

    好消息是,图片可以避免被AI识别。
    坏消息是,图片还是歪的!

    nations = dict(zip(['China','France','USA','Germany'],['Chinese','French','English','German']))
    for key,value in nations.items():
        print(key)   ### 显示所有键
    print('华丽分割线----------')
    for key,value in nations.items():
        print(value)   ### 显示所有值
    print('华丽分割线----------')
    print(nations)     ### 所有项
    print('华丽分割线----------')
    print('获取键France对应的值为:',nations['France'])
    new_diction = {'Spain':'Spanish' , 'Japan':'Japanese'}   ### 构建一个新字典
    for key,value in new_diction.items() :
        nations[key] = value        ####添加进 nations中
    #----------------------------------------------------------      第二题
    names = ['xiaoma','xiaoma','xiaowang','xiaoma','xiaoliu','xiaoliu']
    ##统计出每个学生参与的次数
    students = set(names)      ### 所有不重复的学生
    result = dict()
    for student in students :
        result[student] = 0  ### 学生出现次数置0
    for name in names :
         result[name] += 1   ###  +1
    print(result)
    # -----------------第三题
    users = {'name':'password','name1':'password1'}
    notin = True
    for key,value in users.items():
        if 'xiaowang' == key :
            notin = False
            print(users[key]) ### 如果存在输出密码
            break
    if notin :
        print('not found')     ### 不存在输出没找到
    
    #-----------------------------------第四题
    footballset = set(['a','b','c','d'])
    basketballset = set(['e','f','n','mm','a'])
    def count_set(set_a):
        i = 0
        for tmp in set_a :
            i += 1
        return i
    print(footballset , count_set(footballset))
    print(basketballset,count_set(basketballset))
    tichu_list = []
    for a in footballset :
        for b in basketballset :
            if a == b :
                tichu_list.append(a)
    result = []
    for a in footballset :
        if a not in tichu_list :
            result.append(a)
    for b in basketballset :
        if b not in tichu_list :
            result.append(b)
    print('只选了一门课的人有 :',result)
    print('总人数为:',len(result))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 4月26日
  • 已采纳回答 4月18日
  • 创建了问题 4月18日

悬赏问题

  • ¥15 PointNet++的onnx模型只能使用一次
  • ¥20 西南科技大学数字信号处理
  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。