Inside gdb to print the content at a particular memory address, I can ran the below command. It prints the content in hex
x <memoryaddress>
(gdb) x 299395816
0x11d86ae8: 0x0ec14153
I am using the gdb python module inside the gdb, what's the equivalent command to read the memory location with the gdb module inside my python script.