01helloword

import tensorflowas tf

hello = tf.constant('hello world')

sess = tf.Session()

a = sess.run(hello)

print(a)

你可能感兴趣的:(01helloword)