gpt4 book ai didi

python - 在TensorFlow中,字符串常量的打印总是附有 'b'

转载 作者:IT老高 更新时间:2023-10-28 22:08:16 26 4
gpt4 key购买 nike

在 Windows 10 上安装 TensorFlow r0.12(CPU) 的测试过程中,我发现打印的字符串 contant 总是以 'b' 结尾。 python的打印正常。我无法弄清楚原因所以来这里寻求帮助。代码如下:

>>>import tensorflow as tf
>>>hello = tf.constant('Hello, TensorFlow!')
>>>sess = tf.Session()
>>>print(sess.run(hello))
b'Hello, TensorFlow!'

最佳答案

使用 sess.run(hello).decode() 因为它是一个字节串。 decode 方法会返回字符串。

你的打印语句必须看起来像

print(sess.run(hello).decode())

关于python - 在TensorFlow中,字符串常量的打印总是附有 'b',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40904979/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com