推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
zcsnbb
V2EX  ›  Python

Python 字节的问题

  •  
  •   zcsnbb · Oct 11, 2018 · 2042 views
    This topic created in 2849 days ago, the information mentioned may be changed or developed.

    [b"['2018-10-11 08:16:00', 6498, 6525, 6497.5, 6503.5, 1539216960000]", b"['2018-10-11 08:17:00', 6503.5, 6523.5, 6497.5, 6514.5, 1539217020000]", b"['2018-10-11 08:18:00', 6514.5, 6515, 6490.5, 6492, 1539217080000]", b"['2018-10-11 08:19:00', 6492, 6495, 6490, 6490, 1539217140000]",]

    我从 redis 取出的数据是这样 要怎么将他转换为嵌套列表呢,这个 b 要怎么去掉呢

    4 replies    2018-10-13 00:07:43 +08:00
    enenaaa
        1
    enenaaa  
       Oct 11, 2018
    b 说明是二进制串。 转成 unicode 后, 按 json 解析。
    locoz
        2
    locoz  
       Oct 11, 2018
    [json.loads(i.decode().replace("'", '"')) for i in a]
    ltoddy
        3
    ltoddy  
       Oct 11, 2018
    ```
    >>> d = [b"['2018-10-11 08:16:00', 6498, 6525, 6497.5, 6503.5, 1539216960000]", b"['2018-10-11 08:17:00', 6503.5, 6523.5, 6497.5, 6514.5, 1539217020000]", b"['2018-10-11 08:18:00', 6514.5, 6515, 6490.5, 6492, 1539217080000]", b"['2018-10-11 08:19:00', 6492, 6495, 6490, 6490, 1539217140000]",]
    >>>
    >>>
    >>>
    >>> [s.decode() for s in d]
    ["['2018-10-11 08:16:00', 6498, 6525, 6497.5, 6503.5, 1539216960000]", "['2018-10-11 08:17:00', 6503.5, 6523.5, 6497.5, 6514.5, 1539217020000]", "['2018-10-11 08:18:00', 6514.5, 6515, 6490.5, 6492, 1539217080000]", "['2018-10-11 08:19:00', 6492, 6495, 6490, 6490, 1539217140000]"]
    >>>
    ```
    datou
        4
    datou  
       Oct 13, 2018
    redis 读数据库的时候有个参数是编码成字符串
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1120 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 17:55 · PVG 01:55 · LAX 10:55 · JFK 13:55
    ♥ Do have faith in what you're doing.