1
我剛剛在RPi 3上完成安裝Tensorflow 1.3。驗證安裝(根據此https://www.tensorflow.org/install/install_sources)以某種方式顯示小寫「b」。看到這些代碼:爲什麼TensorFlow返回的字符串在Python 3中顯示爲'b'前綴?
[email protected]:/home/pi# python
Python 3.4.2 (default, Oct 19 2014, 13:31:11)
[GCC 4.9.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
b'Hello, TensorFlow!'
>>>
我很高興,謝謝! – user1801605
不客氣!如果解決了您的問題,請記得接受我的回覆。 – nessuno