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