Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!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: UNSURE 0.210 X-Spam-Level: ** X-Spam-Evidence: '*H*': 0.62; '*S*': 0.04; 'subject:Python': 0.06; 'brackets': 0.16; 'params': 0.16; 'perl': 0.19; 'received:209.85.161.46': 0.23; 'received:mail- fx0-f46.google.com': 0.23; 'received:209.85.161': 0.26; 'subject:?': 0.29; 'x-mailer:microsoft outlook express 6.00.2900.5931': 0.30; 'word.': 0.32; 'to:addr:python-list': 0.33; 'from:': 0.36; 'received:google.com': 0.37; 'received:209.85': 0.37; 'but': 0.38; 'subject:: ': 0.38; 'received:209': 0.39; 'to:addr:python.org': 0.39; 'received:188': 0.69; 'numerous': 0.77; '[1,2]': 0.84; 'subject:Why': 0.84; 'subject:choose': 0.84; 'subject:its': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:from:to:references:subject:date :mime-version:content-type:content-transfer-encoding:x-priority :x-msmail-priority:x-mailer:x-mimeole; bh=9/nl6gHqYzY3xZ1hKVMyJJpkeUp2H8c9I4KmFJvIgGE=; b=CtFgok57A2wbY5EqngSMjqawLcM51t2fLBidIbOcS2zNtpUapzjQxPhLZOsmPEJ0FS 2Swe3mBsA7FVUAhD6nXiOf2bnb3IvVfoeGYApojuGBB/GCBpDci26c+ombLZrDOKWNYd JdQd1Z7YaibZ/8/GCQoycIMW3hBnBIk3EuIvo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:references:subject:date:mime-version :content-type:content-transfer-encoding:x-priority:x-msmail-priority :x-mailer:x-mimeole; b=DlI9wqZv78AXjYPZH+BzfMb2/j+0ujksGGelNrd/TTDJ/9z1EzNXSvYbEOS3/aLFTz fASd4KfUGgTJV8fmf16O/9loilBMJDTAMrKte48jvHhUQ7dYTQ0xEGhIW9K2C2IPHWuw 9LKwd9zR4Zm1BvX1rVyBlka8Ky6SkXWnpnhE4= From: "Octavian Rasnita" To: References: <80d59383-36a3-4744-85c4-1a0577f1d3a6@dr5g2000vbb.googlegroups.com><9CDC4B2CD1F445E994119A50F65155DF@teddy><12225671E9654FECB49613D915FAEC19@teddy><21A740B7AC6644248476DFADDF726C73@octavian><629DAC3611EA49B0A36BCF70151CDE2F@octavian> Subject: Re: Why did Quora choose Python for its development? Date: Mon, 23 May 2011 14:10:55 +0300 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6090 X-Mailman-Approved-At: Tue, 24 May 2011 04:56:00 +0200 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 17 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1306205762 news.xs4all.nl 49181 [::ffff:82.94.164.166]:54296 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:6109 From: "Daniel Kluev" a = [1,2] dict([a]) Yes, but d = dict([a]) is not so nice as $d = @a; because it has exactly those numerous number of params and brackets which is used as a reason for bashing Perl and an aditional "dict" word. Octavian