the code is pinned underneath:
import tensorflow as tf
hello=tf.constant("hello,Python!")
sess=tf.Session()
print(sess.run(hello))
the current result is pinned underneath:
b'hello,Python!'
then the screenshot
so,what shall I do to drop the strange "b" before the current result?