吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1543|回复: 13
收起左侧

[已解决] python字典对比求助

[复制链接]
jetzhou 发表于 2020-11-25 17:32
本帖最后由 jetzhou 于 2020-12-2 14:25 编辑

#输入值
a = {"tem":50,"speed":600,"current":30,"start":1}

#报警值
b = {"tem":75,"speed":610,"current":35,"start":0}

#请问一下,这两个字典输入值、报警值怎么比较啊,
#其中一项满足时:#就打印出相应报警:如speed值为620时,就打印:“speed值高了,”
#tem值太于75、speed值 太于610、current值小于35、start值等于0

如果这两字典键值对比较多,怎么使用遍历方法比较呢?

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

无敌小车 发表于 2020-11-25 17:43
遍历一下不就好了
volcanst 发表于 2020-11-25 17:47
[Python] 纯文本查看 复制代码
if(a['tem']>75 or a['speed']>610 or a['current']<30 or a['start']==0):
	print('报警')

或者
[Python] 纯文本查看 复制代码
if(a['tem']>b['tem'] or a['speed']>b['speed'] or a['current']<b['current'] or a['start']==b['start']):
	print('报警')
 楼主| jetzhou 发表于 2020-11-25 19:45
volcanst 发表于 2020-11-25 17:47
[mw_shl_code=python,true]if(a['tem']>75 or a['speed']>610 or a['current']b['tem'] or a['speed']>b['s ...

这个报警出输能不能改的具体的一点的:是tem高了?是speed高了?还是其它的原因?
ciker_li 发表于 2020-11-25 20:19
if
elseif
else
一个一个判断就行了吧
十二月二十五 发表于 2020-11-25 20:34
本帖最后由 十二月二十五 于 2020-11-25 20:44 编辑

if a['tem']>b['tem']:
    print('tem值大于75')
if a['speed']>b['speed']:
    print('speed值 大于610')
if a['current']<b['current']:
    print('current值小于35')
if a['start']==b['start']:
    print('start值等于0')


for z in a:
    if z=='tem':
        a['tem'] > b['tem']
        print('tem值大于75')
    elif z=='speed':
        a['speed'] > b['speed']
        print('speed值 大于610')
    elif z=='current':
        a['current'] < b['current']
        print('current值小于35')
    elif z=='start':
        a['start'] == b['start']
        print('start值等于0')
gongsui 发表于 2020-11-25 22:50
关键在于字典a['tem']这样取值,明白了之后就各种判断了。
volcanst 发表于 2020-11-26 13:59
jetzhou 发表于 2020-11-25 19:45
这个报警出输能不能改的具体的一点的:是tem高了?是speed高了?还是其它的原因?

不好意思刚看到,我看评论回复已经有给出解决方案了,进行多次判断就好了
徒悲 发表于 2020-11-26 14:21
[Python] 纯文本查看 复制代码
# 输入值
a = {"tem":50,"speed":600,"current":30,"start":1}
# 报警值
b = {"tem":75,"speed":610,"current":35,"start":0}

for k,v in b.items():
    if a[k] > v:
        print("%s大了, 报警值为%d" %(k, v))
    elif a[k] < v:
        print("%s小了, 报警值为%d" %(k, v))
 楼主| jetzhou 发表于 2020-11-26 15:09
徒悲 发表于 2020-11-26 14:21
[mw_shl_code=python,true]# 输入值
a = {"tem":50,"speed":600,"current":30,"start":1}
# 报警值

这样一来,只要不相同都会报一条,要么高,要么低。
但是其实a字典中[tem]、[speed]值小于报警值是正常,不应该打印,
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 10:26

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表