How do the two dictionaries of python compare in size?

a = {"name":" alex", "age": 23}
b = {" name": "john"," age": 28}
obtain the maximum age dictionary dict? according to the size of the age

Jul.08,2021

python3


a = {'name': 'alex', 'age': 23}
b = {'name': 'john', 'age': 28}

print('a>b') if a['age'] > b['age'] else print('a<b')
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3a1e5-2c1f7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3a1e5-2c1f7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?