TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

7 lines
202 B

a = {'max': 200}
b = {'min': 100, 'max': 250}
c = {'min': 50}
print(a['min'])
print(a['min'] + b['min'] + c['min']) # throws KeyError
print(a.get('min', 0) + b.get('min', 0) + c.get('min', 0)) # 150