I'm reading through a python class and confused with the following syntax:
handler = WorkerHandler()
handlers = {
"create_vm": handler.create_vm,
"add_guacamole_connections": handler.add_guacamole_connections,
"delete_vm":handler.delete_vm
}
I know that this is creating a dictionary but I'm just confused as to what this dot notation is called in python. I tried looking up "reference to function" but this does not work