# TensorFlow机器学习框架-学习笔记-001
### 测试TensorFlow环境是否安装完成-----------------------------```import tensorflow as tf
hello = tf.constant('Hello,TensorFlow!')sess = tf.Session()print(sess.run(hello))```