Use sess.run(hello).decode() because it is a bytestring. decode method will return the string.
Your print statement must look like
print(sess.run(hello).decode())
Use sess.run(hello).decode() because it is a bytestring. decode method will return the string.
Your print statement must look like
print(sess.run(hello).decode())