I am studying TensorFlow with Python 2.7.6. https://www.tensorflow.org/versions/master/tutorials/mnist/tf/index.html#tensorflow-mechanics-101
From above page, I can obtain fully_connected_feed.py.
In the file, I see
# And run one epoch of eval.
true_count = 0 # Counts the number of correct predictions.
steps_per_epoch = data_set.num_examples // FLAGS.batch_size
What is the meaning of the "//" operator?
I am trying to find the meaning in API doc, without success. https://www.tensorflow.org/api_docs/python/index.html