如何检查Keras后端是tensorflow还是theano

How to check if Keras backend is tensorflow or theano

我想检查后端 keras 使用的代码。是tensorflow还是theano?我怎样才能得到这个?

代码 here 使用 K._BACKEND,但是我收到一条错误消息,指出未找到该属性。我的 Keras 版本是 2.2.5

来自here,以下作品

from keras import backend as K

print(K.backend())