>>> mydict = {"message": {"hello": 123456}} >>> print(mydict['message']) {'hello': 123456} >>> print(mydict['message']['hello']) 123456