Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #70533
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <jeanpierreda@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.014 |
| X-Spam-Evidence | '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.06; '22,': 0.09; 'violates': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'downside': 0.16; 'forth.': 0.16; 'lowercase': 0.16; 'mapped': 0.16; 'subject:Unicode': 0.16; 'words.': 0.16; 'wrote:': 0.18; 'typing': 0.19; 'cc:addr:python.org': 0.22; 'keyboard': 0.24; 'specify': 0.24; 'cc:2**0': 0.24; 'header:In- Reply-To:1': 0.27; 'words': 0.29; 'characters': 0.30; 'message- id:@mail.gmail.com': 0.30; "d'aprano": 0.31; 'keys': 0.31; 'steven': 0.31; 'style': 0.33; 'but': 0.35; 'received:google.com': 0.35; 'mapping': 0.38; 'pm,': 0.38; 'how': 0.40; 'name': 0.63; 'capital': 0.73; 'special': 0.74; 'maths': 0.84; 'remembering': 0.84; 'to:none': 0.92 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:cc :content-type:content-transfer-encoding; bh=oSpDgIVF5Dc4xnVQzlCMJo9OPy0cQEjkQTE71UUhoQA=; b=J0vymTmmdxyyizN7GmsJwchA58i2pQi/IMRNlmJjuJzQveBZmwfIXJIaLYZImjP3VE 4HUFciNmwGxmd/jH4xWIv5ZKaQ7tGyEJDfTT7VzA2QMBnaIouSsFaYME/uAog4KTO4bf bfYNi0obEVmCKwkLlxGaH5pxXdk/sv9+cs7YfiSMxOz7Hi1aD1YiNUFDILHcIuhsqtre jvdzhpibJEwlKlko7X+in5T2/igmYfMuf/S0X1WO7Grekw+gTjvcsDNiGbd/7grpxmEG gKdsCOcFA+tzi1l/lZzBayO5Hqp0n2h5lPRvBHY2JnbUngqJp4NaEvCxmj+39lXLi4VS V8/w== |
| X-Received | by 10.140.96.68 with SMTP id j62mr45937327qge.5.1398234024916; Tue, 22 Apr 2014 23:20:24 -0700 (PDT) |
| MIME-Version | 1.0 |
| In-Reply-To | <53575521$0$11109$c3e8da3@news.astraweb.com> |
| References | <0f253434-5e7d-4eea-88e1-7997fec2bd2d@googlegroups.com> <53575521$0$11109$c3e8da3@news.astraweb.com> |
| From | Devin Jeanpierre <jeanpierreda@gmail.com> |
| Date | Tue, 22 Apr 2014 23:19:44 -0700 |
| Subject | Re: Unicode in Python |
| Cc | "comp.lang.python" <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | quoted-printable |
| 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.9455.1398234027.18130.python-list@python.org> (permalink) |
| Lines | 18 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1398234027 news.xs4all.nl 2957 [2001:888:2000:d::a6]:43670 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:70533 |
Show key headers only | View raw
On Tue, Apr 22, 2014 at 10:52 PM, Steven D'Aprano <steve@pearwood.info> wrote:
> There's not just the keyboard mapping. There's the mental cost of knowing
> which keyboard mapping you need ("is it Greek, Hebrew, or maths
> symbols?"), the cost of remembering the mapping from the keys you see on
> the keyboard to the keys they are mapped to ("is Ω mapped to O or W?")
> and so forth. If you know lambda-calculus, you might associate λ with
> functions, [...]
Or if you know Python and the name of the letter ("lambda").
But yes, typing out the special characters is annoying. I just use
words. The only downside to using words is, how do you specify capital
versus lowercase letters? "Gamma = ..." violates the style guide! :(
-- Devin
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Unicode in Python Rustom Mody <rustompmody@gmail.com> - 2014-04-22 22:31 -0700
Re: Unicode in Python Chris Angelico <rosuav@gmail.com> - 2014-04-23 15:50 +1000
Re: Unicode in Python Rustom Mody <rustompmody@gmail.com> - 2014-04-22 23:57 -0700
Re: Unicode in Python Chris Angelico <rosuav@gmail.com> - 2014-04-23 17:06 +1000
Re: Unicode in Python Steven D'Aprano <steve@pearwood.info> - 2014-04-23 07:29 +0000
Re: Unicode in Python Steven D'Aprano <steve@pearwood.info> - 2014-04-23 07:53 +0000
Re: Unicode in Python Rustom Mody <rustompmody@gmail.com> - 2014-04-23 10:59 -0700
Re: Unicode in Python wxjmfauth@gmail.com - 2014-04-26 00:15 -0700
Re: Unicode in Python "Frank Millman" <frank@chagford.com> - 2014-04-26 09:45 +0200
Re: Unicode in Python Ben Finney <ben@benfinney.id.au> - 2014-04-26 17:50 +1000
Re: Unicode in Python Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-26 09:38 -0400
Re: Unicode in Python wxjmfauth@gmail.com - 2014-04-27 07:29 -0700
Re: Unicode in Python wxjmfauth@gmail.com - 2014-04-28 01:57 -0700
Re: Unicode in Python random832@fastmail.us - 2014-05-01 13:21 -0400
Re: Unicode in Python wxjmfauth@gmail.com - 2014-05-07 23:04 -0700
Re: Unicode in Python Michael Torrie <torriem@gmail.com> - 2014-05-01 21:50 -0600
Re: Unicode in Python wxjmfauth@gmail.com - 2014-05-03 00:46 -0700
Re: Unicode in Python Rustom Mody <rustompmody@gmail.com> - 2014-04-27 10:39 -0700
Re: Unicode in Python Steven D'Aprano <steve@pearwood.info> - 2014-04-23 05:52 +0000
Re: Unicode in Python Devin Jeanpierre <jeanpierreda@gmail.com> - 2014-04-22 23:19 -0700
Re: Unicode in Python Ben Finney <ben@benfinney.id.au> - 2014-04-23 16:41 +1000
csiph-web