原教程地址之Variable变量
先贴原代码
import tensorflow as tf
tf.compat.v1.disable_eager_execution()#这一句为了让run正常运行
state = tf.Variable(0,name='counter')
#print(state.name)
one = tf.constant(1)
new_value = tf.add(state,one)
update = tf.assign(state,new_value)
#定义变量后最重要的一步:初始