import tensorflow as tf

temp = tf.range(0,10)*10 + tf.constant(1,shape=[10])
temp2 = tf.gather(temp,[1,5,9])

with tf.Session() as sess:

print sess.run(temp)
print

输出

[ 1 11 21 31 41 51 61 71 81 91] 
[11 51 91]