01helloword2018-11-08 本文已影响0人 王涛_a3ebimport tensorflowas tf hello = tf.constant('hello world')sess = tf.Session()a = sess.run(hello)print(a)