Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'problem:': 0.07; '[1,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:question': 0.10; 'python': 0.11; 'ast': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'import': 0.22; 'header:User- Agent:1': 0.23; 'url:dev': 0.24; 'question': 0.24; 'header:X -Complaints-To:1': 0.27; 'thus': 0.29; 'code': 0.31; 'url:python': 0.33; 'skip:b 30': 0.33; 'could': 0.34; 'but': 0.35; 'subject:data': 0.36; 'url:org': 0.36; 'should': 0.36; 'list': 0.37; 'url:library': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'skip:u 10': 0.60; 'skip:a 30': 0.61; 'back': 0.62 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: A data conversion question Date: Sun, 06 Apr 2014 10:37:58 +0200 Organization: None References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p57bdbe5f.dip0.t-ipconnect.de User-Agent: KNode/4.11.5 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1396773491 news.xs4all.nl 2910 [2001:888:2000:d::a6]:51907 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:69759 Mok-Kong Shen wrote: > A newbie's question of curiosity: > > If I have > > g=[1,[2]] and > > bg=bytearray(str(g),"latin-1") > > could I somehow get back from bg a list g1 that is the same as g? Not for arbitrary values, but for lists, ints, and a few other types that's not a problem: >>> g = [1, [2]] >>> bg = bytearray(str(g), "latin-1") >>> bg bytearray(b'[1, [2]]') >>> import ast >>> ast.literal_eval(bg.decode("latin-1")) [1, [2]] See also https://docs.python.org/dev/library/ast.html#ast.literal_eval Note that while eval() instead of ast.literal_eval() would also work you should avoid it. eval() can execute arbitrary Python code and is thus a big security whole when applied to user-provided data.