Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #69941
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.013 |
| X-Spam-Evidence | '*H*': 0.97; '*S*': 0.00; 'insert': 0.05; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; '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; 'header:User-Agent:1': 0.23; 'equivalent': 0.26; 'header:X-Complaints-To:1': 0.27; 'words': 0.29; 'subject:list': 0.30; 'third': 0.33; 'subject:the': 0.34; 'subject:?': 0.36; 'to:addr:python-list': 0.38; 'moving': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'length': 0.61; 'side': 0.67; 'skip:w 30': 0.69; 'power': 0.76 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Peter Otten <__peter__@web.de> |
| Subject | Re: how to insert the elements in a list properly? |
| Date | Wed, 09 Apr 2014 12:46:24 +0200 |
| Organization | None |
| References | <CAOmh460uYJXX70+xrPYJi6LoBh_fwyrAqfSac+78D3dWYd=72g@mail.gmail.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset="ISO-8859-1" |
| Content-Transfer-Encoding | 7Bit |
| X-Gmane-NNTP-Posting-Host | p57bdafc0.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 <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.9067.1397040407.18130.python-list@python.org> (permalink) |
| Lines | 32 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1397040407 news.xs4all.nl 2843 [2001:888:2000:d::a6]:40239 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:69941 |
Show key headers only | View raw
length power wrote: > word=["x1","x2","x3","x4","x5"] > w=word[-2:] > del word[-2:] > word.insert(2,w) > word > ['x1', 'x2', ['x4', 'x5'], 'x3'] > > what i want to get is > ['x1', 'x2', 'x4', 'x5', 'x3'] > > how can i insert them ? Make the left-hand side an empty slice: >>> words = ["x1", "x2", "x3", "x4", "x5"] >>> w = words[-2:] >>> del words[-2:] >>> words[2:2] = w >>> words ['x1', 'x2', 'x4', 'x5', 'x3'] Or note that the operation is equivalent to moving the third item to the end: >>> words = ["x1", "x2", "x3", "x4", "x5"] >>> words.append(words.pop(2)) >>> words ['x1', 'x2', 'x4', 'x5', 'x3']
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: how to insert the elements in a list properly? Peter Otten <__peter__@web.de> - 2014-04-09 12:46 +0200
csiph-web