Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #19029
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <panmik@yandex.ru> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.024 |
| X-Spam-Evidence | '*H*': 0.96; '*S*': 0.00; 'filename:fname piece:py': 0.04; 'python:': 0.05; 'append': 0.09; 'received:77.88.61': 0.09; 'received:forward8.mail.yandex.net': 0.09; 'string:': 0.16; 'subject:list': 0.21; 'string': 0.24; 'expect': 0.26; 'second': 0.29; 'received:77.88': 0.30; 'received:mail.yandex.net': 0.30; 'received:yandex.net': 0.30; 'list:': 0.30; 'signed': 0.32; 'list': 0.32; 'to:addr:python-list': 0.33; 'to:addr:python.org': 0.40; 'more': 0.61; 'charset:koi8-r': 0.63; 'received:ru': 0.63; 'received:77': 0.66; 'subject:FROM': 0.97 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1326690273; bh=gf/n0bc0CtMOfmiYDxaL02lRoHglGsyCm3g5wFFcKCo=; h=Message-ID:From:To:Subject:Date:MIME-Version:Content-Type; b=muM06BmqBmVHnRDOZQUkTlqpiUv5M+eOHEoYyidXH8LIQxRSea0NsuzkvFb12eoWR MmcwGMYkuvUEecdFsyHdEGdgDUxQoVFMNjAlQmaK4D8TqM7fW5bsU/PFTq2f+/fiLz BixNXemIdkpFfHoiEwBuct4mZpylGRQZLRZM0r+s= |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1326690273; bh=gf/n0bc0CtMOfmiYDxaL02lRoHglGsyCm3g5wFFcKCo=; h=Message-ID:From:To:Subject:Date:MIME-Version:Content-Type; b=muM06BmqBmVHnRDOZQUkTlqpiUv5M+eOHEoYyidXH8LIQxRSea0NsuzkvFb12eoWR MmcwGMYkuvUEecdFsyHdEGdgDUxQoVFMNjAlQmaK4D8TqM7fW5bsU/PFTq2f+/fiLz BixNXemIdkpFfHoiEwBuct4mZpylGRQZLRZM0r+s= |
| X-Yandex-Spam | 1 |
| From | "_" <panmik@yandex.ru> |
| To | <python-list@python.org> |
| Subject | THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator) |
| Date | Mon, 16 Jan 2012 09:03:54 +0300 |
| MIME-Version | 1.0 |
| Content-Type | multipart/mixed; boundary="----=_NextPart_000_000F_01CCD42D.C61259D0" |
| X-Priority | 3 |
| X-MSMail-Priority | Normal |
| X-Mailer | Microsoft Windows Mail 6.0.6002.18005 |
| X-MimeOLE | Produced By Microsoft MimeOLE V6.0.6002.18005 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://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 | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.4786.1326690281.27778.python-list@python.org> (permalink) |
| Lines | 39 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1326690281 news.xs4all.nl 6848 [2001:888:2000:d::a6]:58628 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:19029 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
# THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON:
Worddr = "56" # CREATE A STRING: "56"
Word = ["12"] # CREATE A LIST WITH ONE SIGNED: "12"
Word = Word.append("34") # APPEND TO LIST ONE MORE SIGNED: "34"
Word = Word + "34" # MUST APPEND TO LIST ONE MORE SIGNED: "34"
Wordpr = Word[1] # MUST SIGNED TO THE Wordpr THE SECOND SIGNED OF THE Word
LIST: "34", AND IT'S ALL PARAMETRS
Wordpr = Wordpr + Worddr[1] # MUST ADD TO THE STRING Wordpr: "34", A SECOND
SIGNED OF STRING Worddr: "6"
Word[1] = Word[1] + Worddr[1] # MUST ADD TO THE SECOND STRING LIST Word:
"346", A SECOND SIGNED OF STRING Worddr: "6"
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator) "_" <panmik@yandex.ru> - 2012-01-16 09:03 +0300
Re: THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator) alex23 <wuwei23@gmail.com> - 2012-01-15 22:30 -0800
Re: THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator) Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-01-16 07:01 +0000
Re: THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator) Sean Wolfe <ether.joe@gmail.com> - 2012-01-17 10:59 -0300
Re: THAT WHAT NEED EXPECT FROM OPERATORS OF PYTHON. (e-mail get by the list moderator) Rick Johnson <rantingrickjohnson@gmail.com> - 2012-01-17 17:20 -0800
csiph-web