Re: FW: Pycharm Won't Do Long Underscore

2020-07-02 Thread Michael Torrie
On 7/2/20 2:55 PM, Danilo Coccia wrote:
> Il 30/06/2020 23:46, Joe Pfeiffer ha scritto:
>> "Peter J. Holzer"  writes:
>>> I agree. Although there are some fonts with special ligatures for
>>> programming. I have never used one, but that seems like an interesting
>>> concept.
>>
>> I've never heard of that before.  I'd be curious to try one.
>>
> 
> I've been using this one, and I like it:
>   https://github.com/tonsky/FiraCode
>   https://www.fontsquirrel.com/fonts/fira-code
> 
> Works well with PyCharm.

Hmm. That is... interesting.  I'm not at all sure how I feel about that.
 On the one hand it partly appeals, but on the other hand it quite
repulses me.  I don't find the FireCode samples any easier to read than
a normal font. In fact I find it slightly more difficult to read, since
my brain is not used to looking for those symbols.  Hmmm.  Yeah I dunno
about this one!  Very interesting. Thanks for sharing it.

I tried it, and it's definitely not for me!


-- 
https://mail.python.org/mailman/listinfo/python-list


Re: FW: Pycharm Won't Do Long Underscore

2020-07-02 Thread Danilo Coccia
Il 30/06/2020 23:46, Joe Pfeiffer ha scritto:
> "Peter J. Holzer"  writes:
> 
>> On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote:
>>> One other note -- while you may want various good-looking fonts with
>>> ligatures in other domains, for writing code a monospace font with no
>>> ligatures lets you see exactly what's there and saves a host of
>>> problems.  My personal favorite for these purposes is called "Terminus
>>> Regular", but which specific one you pick is much less important than
>>> that you use one.
>>
>> I agree. Although there are some fonts with special ligatures for
>> programming. I have never used one, but that seems like an interesting
>> concept.
> 
> I've never heard of that before.  I'd be curious to try one.
> 

I've been using this one, and I like it:
  https://github.com/tonsky/FiraCode
  https://www.fontsquirrel.com/fonts/fira-code

Works well with PyCharm.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-30 Thread Random832
On Wed, Jun 24, 2020, at 21:38, Grant Edwards wrote:
> On 2020-06-24, Peter J. Holzer  wrote:
> 
> > There is U+FF3F Fullwidth Low Line.
> >
> >> If there were, Python would not know what to do with it
> >
> > You can use it in variable names, but not at the beginning, and it isn't
> > equivalent to two underscores, of course:

It is, in fact, equivalent to a single underscore. This is reasonable, given 
the unicode rules [I assume identifier lookup uses NFKC] and how these 
characters function for East Asian users.

> Ouch.  Anybody caught using that should be fed to a large snake.

Honestly, if I were to suggest any change it'd be to fix it so it's allowed at 
the beginning of an identifier. Let each (human) language's community worry 
about coding conventions for code intended for speakers of that language 
instead of trying to impose things on the world as english-speakers.

>>> a=1
>>> a_b=2
>>> a
1
>>> a_b
2
>>> _
  File "", line 1
_
^
SyntaxError: invalid character in identifier
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: FW: Pycharm Won't Do Long Underscore

2020-06-30 Thread Joe Pfeiffer
"Peter J. Holzer"  writes:

> On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote:
>> One other note -- while you may want various good-looking fonts with
>> ligatures in other domains, for writing code a monospace font with no
>> ligatures lets you see exactly what's there and saves a host of
>> problems.  My personal favorite for these purposes is called "Terminus
>> Regular", but which specific one you pick is much less important than
>> that you use one.
>
> I agree. Although there are some fonts with special ligatures for
> programming. I have never used one, but that seems like an interesting
> concept.

I've never heard of that before.  I'd be curious to try one.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: FW: Pycharm Won't Do Long Underscore

2020-06-30 Thread Peter J. Holzer
On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote:
> One other note -- while you may want various good-looking fonts with
> ligatures in other domains, for writing code a monospace font with no
> ligatures lets you see exactly what's there and saves a host of
> problems.  My personal favorite for these purposes is called "Terminus
> Regular", but which specific one you pick is much less important than
> that you use one.

I agree. Although there are some fonts with special ligatures for
programming. I have never used one, but that seems like an interesting
concept.

hp

-- 
   _  | Peter J. Holzer| Story must make more sense than reality.
|_|_) ||
| |   | h...@hjp.at |-- Charles Stross, "Creative writing
__/   | http://www.hjp.at/ |   challenge!"


signature.asc
Description: PGP signature
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-30 Thread Peter J. Holzer
On 2020-06-25 11:56:47 -0600, Michael Torrie wrote:
> On 6/24/20 7:38 PM, Grant Edwards wrote:
> > On 2020-06-24, Peter J. Holzer  wrote:
> >> There is U+FF3F Fullwidth Low Line.
> >>
> >>> If there were, Python would not know what to do with it
> >>
> >> You can use it in variable names, but not at the beginning, and it isn't
> >> equivalent to two underscores, of course:
> > 
> > Ouch.  Anybody caught using that should be fed to a large snake.
> 
> Even allowing unicode letters in variable names period is questionable,
> but that loud debate was over years ago.  Fortunately I have never seen
> any python code in the wild with non-latin characters for variable
> names.

When I use German words as identifiers (I try to avoid this, but
sometimes translating to English would just confuse everybody), I do use
umlauts. I have also used Greek letters for physical quantities (e.g., ω
for angular velocity).

> Would make editing code very painful for developers from different
> locales and keyboards.

Yeah, editor support is a problem[1]. For my code with German identifiers
it is very unlikely that anybody who doesn't use German daily (and hence
already has the need to type umlauts) will ever have to edit it. The
Greek characters are in private code only.

hp


[1] I use vim. Digraphs are a bit awkward but good enough for medium
rare[2] characters. I don't know how to type characters not on the
keyboard[3] in VS code or PyCharm or Emacs or whatever others are
using. "I can't edit your code because I can't type that variable
name" is certainly not something I want to hear from my colleagues.

[2] Pun not intended.

[3] Includes compose-sequences, if the keyboard has a compose key.

-- 
   _  | Peter J. Holzer| Story must make more sense than reality.
|_|_) ||
| |   | h...@hjp.at |-- Charles Stross, "Creative writing
__/   | http://www.hjp.at/ |   challenge!"


signature.asc
Description: PGP signature
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-25 Thread Michael Torrie
On 6/24/20 7:38 PM, Grant Edwards wrote:
> On 2020-06-24, Peter J. Holzer  wrote:
> 
>> There is U+FF3F Fullwidth Low Line.
>>
>>> If there were, Python would not know what to do with it
>>
>> You can use it in variable names, but not at the beginning, and it isn't
>> equivalent to two underscores, of course:
> 
> Ouch.  Anybody caught using that should be fed to a large snake.

Even allowing unicode letters in variable names period is questionable,
but that loud debate was over years ago.  Fortunately I have never seen
any python code in the wild with non-latin characters for variable
names.  Would make editing code very painful for developers from
different locales and keyboards. Even if it might seem novel at first to
have π be a variable name.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Grant Edwards
On 2020-06-24, Peter J. Holzer  wrote:

> There is U+FF3F Fullwidth Low Line.
>
>> If there were, Python would not know what to do with it
>
> You can use it in variable names, but not at the beginning, and it isn't
> equivalent to two underscores, of course:

Ouch.  Anybody caught using that should be fed to a large snake.

--
Grant

-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread o1bigtenor
On Wed, Jun 24, 2020 at 1:54 PM Tony Kaloki  wrote:
>
> Thanks for all your explanations, everyone. Hopefully, I'll know better next 
> time I come across a similar case. Now, to try and understand the rest of 
> Python...
>

Your last sentence - - - - I'm right there with you! (Reading it made
me chuckle!)
I've been a tool maker in so many areas and never really wanted to
fall into the rabbit hole called computer programming (wry grin!).
Here I am working on Python, R, SQL and that's just for starters!
Oh well - - - helps keep life interesting!!

Regards
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: FW: Pycharm Won't Do Long Underscore

2020-06-24 Thread Joe Pfeiffer
One other note -- while you may want various good-looking fonts with
ligatures in other domains, for writing code a monospace font with no
ligatures lets you see exactly what's there and saves a host of
problems.  My personal favorite for these purposes is called "Terminus
Regular", but which specific one you pick is much less important than
that you use one.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Peter J. Holzer
On 2020-06-24 13:48:18 -0400, Dennis Lee Bieber wrote:
> On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki 
> declaimed the following:
> > Alexander,
> > Thank you so much! It worked! Thank you. One question: in your
> > reply, are you saying that Python would have treated the two
> > separate underscores the same way as a long  underscore i.e. it's a
> > stylistic choice rather than a functional necessity?
> 
>   There is no "long underscore" in the character set.

There is U+FF3F Fullwidth Low Line.

> If there were, Python would not know what to do with it

You can use it in variable names, but not at the beginning, and it isn't
equivalent to two underscores, of course:

Python 3.9.0b3 (default, Jun 13 2020, 10:49:29)
[GCC 7.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> _ = 12
  File "", line 1
_ = 12
^
SyntaxError: invalid character '_' (U+FF3F)
>>> a_ = 12
>>> a_
12
>>> a__
Traceback (most recent call last):
  File "", line 1, in 
NameError: name 'a__' is not defined
>>>

hp

-- 
   _  | Peter J. Holzer| Story must make more sense than reality.
|_|_) ||
| |   | h...@hjp.at |-- Charles Stross, "Creative writing
__/   | http://www.hjp.at/ |   challenge!"


signature.asc
Description: PGP signature
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Chris Angelico
On Thu, Jun 25, 2020 at 4:40 AM MRAB  wrote:
>
> On 2020-06-24 18:59, Chris Angelico wrote:
> > On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber  
> > wrote:
> >>
> >> On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki 
> >> declaimed the following:
> >>
> >> >Alexander,
> >> >   Thank you so much! It worked! Thank you. One question: 
> >> > in your reply, are you saying that Python would have treated the two 
> >> > separate underscores the same way as a long  underscore i.e. it's a 
> >> > stylistic choice rather than a functional necessity?
> >>
> >> There is no "long underscore" in the character set. If there were,
> >> Python would not know what to do with it as it was created back when ASCII
> >> and ISO-Latin-1 were the common character sets. (Interesting: Windows
> >> Character Map utility calls the underscore character "low line").
> >
> > That's what Unicode calls it - charmap is probably using that name.
> >
> >> Many word processors are configured to change sequences of hyphens:
> >> - -- --- into - – — (hyphen, en-dash, em-dash)... But in this case, those
> >> are each single characters in the character map (using Windows-Western,
> >> similar to ISO-Latin-1): hyphen is x2D, en-dash is x96, em-dash is x97
> >> (note that en-/em-dash are >127, hence would not be in pure ASCII)
> >
> > Hyphen is U+002D, en dash is U+2013, em dash is 2014. :)
> >
> Not quite. :-)
>
> Hyphen is U+2010.
>
> U+002D is hyphen-minus; it's does double-duty, for historical reasons.

True true, I should have corrected that name. But the point is,
"Windows-Western" is not a good way to describe characters (I think
that probably means "code page 1252"?). Use the Unicode codepoints for
reliability :)

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Tony Kaloki
Thanks for all your explanations, everyone. Hopefully, I'll know better next 
time I come across a similar case. Now, to try and understand the rest of 
Python...

Get Outlook for Android<https://aka.ms/ghei36>


From: Python-list  on behalf 
of MRAB 
Sent: Wednesday, June 24, 2020 7:28:52 PM
To: python-list@python.org 
Subject: Re: Pycharm Won't Do Long Underscore

On 2020-06-24 18:59, Chris Angelico wrote:
> On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber  
> wrote:
>>
>> On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki 
>> declaimed the following:
>>
>> >Alexander,
>> >   Thank you so much! It worked! Thank you. One question: 
>> > in your reply, are you saying that Python would have treated the two 
>> > separate underscores the same way as a long  underscore i.e. it's a 
>> > stylistic choice rather than a functional necessity?
>>
>> There is no "long underscore" in the character set. If there were,
>> Python would not know what to do with it as it was created back when ASCII
>> and ISO-Latin-1 were the common character sets. (Interesting: Windows
>> Character Map utility calls the underscore character "low line").
>
> That's what Unicode calls it - charmap is probably using that name.
>
>> Many word processors are configured to change sequences of hyphens:
>> - -- --- into - – — (hyphen, en-dash, em-dash)... But in this case, those
>> are each single characters in the character map (using Windows-Western,
>> similar to ISO-Latin-1): hyphen is x2D, en-dash is x96, em-dash is x97
>> (note that en-/em-dash are >127, hence would not be in pure ASCII)
>
> Hyphen is U+002D, en dash is U+2013, em dash is 2014. :)
>
Not quite. :-)

Hyphen is U+2010.

U+002D is hyphen-minus; it's does double-duty, for historical reasons.
--
https://mail.python.org/mailman/listinfo/python-list
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread MRAB

On 2020-06-24 18:59, Chris Angelico wrote:

On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber  wrote:


On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki 
declaimed the following:

>Alexander,
>   Thank you so much! It worked! Thank you. One question: in 
your reply, are you saying that Python would have treated the two separate 
underscores the same way as a long  underscore i.e. it's a stylistic choice rather 
than a functional necessity?

There is no "long underscore" in the character set. If there were,
Python would not know what to do with it as it was created back when ASCII
and ISO-Latin-1 were the common character sets. (Interesting: Windows
Character Map utility calls the underscore character "low line").


That's what Unicode calls it - charmap is probably using that name.


Many word processors are configured to change sequences of hyphens:
- -- --- into - – — (hyphen, en-dash, em-dash)... But in this case, those
are each single characters in the character map (using Windows-Western,
similar to ISO-Latin-1): hyphen is x2D, en-dash is x96, em-dash is x97
(note that en-/em-dash are >127, hence would not be in pure ASCII)


Hyphen is U+002D, en dash is U+2013, em dash is 2014. :)


Not quite. :-)

Hyphen is U+2010.

U+002D is hyphen-minus; it's does double-duty, for historical reasons.
--
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Chris Angelico
On Thu, Jun 25, 2020 at 3:51 AM Dennis Lee Bieber  wrote:
>
> On Tue, 23 Jun 2020 20:49:36 +, Tony Kaloki 
> declaimed the following:
>
> >Alexander,
> >   Thank you so much! It worked! Thank you. One question: in 
> > your reply, are you saying that Python would have treated the two separate 
> > underscores the same way as a long  underscore i.e. it's a stylistic choice 
> > rather than a functional necessity?
>
> There is no "long underscore" in the character set. If there were,
> Python would not know what to do with it as it was created back when ASCII
> and ISO-Latin-1 were the common character sets. (Interesting: Windows
> Character Map utility calls the underscore character "low line").

That's what Unicode calls it - charmap is probably using that name.

> Many word processors are configured to change sequences of hyphens:
> - -- --- into - – — (hyphen, en-dash, em-dash)... But in this case, those
> are each single characters in the character map (using Windows-Western,
> similar to ISO-Latin-1): hyphen is x2D, en-dash is x96, em-dash is x97
> (note that en-/em-dash are >127, hence would not be in pure ASCII)

Hyphen is U+002D, en dash is U+2013, em dash is 2014. :)

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Christian Gollwitzer

Am 23.06.20 um 22:49 schrieb Tony Kaloki:

Alexander,
Thank you so much! It worked! Thank you. One question: in 
your reply, are you saying that Python would have treated the two separate 
underscores the same way as a long  underscore i.e. it's a stylistic choice 
rather than a functional necessity?


Python only ever sees two separate underscores. There is no long 
underscore, its only the way it is printed to your screen that differs. 
The difference is the same as if you would choose Arial, Times, or 
Courier to print your source code. The characters look slightly 
different to your eye, but they are exactly the same for Python. The .py 
file doesn't have a difference, regardless how you set the font.


As others have said, the underscore of some fonts is so long that they 
overlap, if you put more than on in a row.


Christian
--
https://mail.python.org/mailman/listinfo/python-list


Re: FW: Pycharm Won't Do Long Underscore

2020-06-23 Thread Terry Reedy

On 6/23/2020 4:44 PM, MRAB wrote:

On 2020-06-23 20:18, Tony Kaloki wrote:


  When I try to do a long underscore __  for classes in Pycharm, 
it only gives me two separate single underscores _ _.


The "__" is 2 underscores; it's just that they usually appear joined 
together in many fonts.


To really see this, start IDLE either from an icon or 'python -m 
idlelib' (use 'python3' on *nix) on a command line.  Open the settings 
dialog with Options => Configure IDLE.  On the Font tab there is a Font 
Sample box.  Go to the bottom and enter several _s.  In the Windows 
Courier font, and several others, this looks like one line.  On the 
left, try other fonts.  On Windows, switching to Source Code Pro (and 
some others) results in separate underscores.  Source Code Pro, as the 
name suggests, is aimed at programmers, and we need to be able to count 
underscores.


Or maybe you can switch fonts in your mail reader and see what happens 
to the underscores above.



--
Terry Jan Reedy


--
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Alexander Neilson
Hi Tony

Absolutely. The “long underscore” is just a display thing. Underneath it is 
always two underscores. The only difference is what your editor is showing (or 
how the underscore is drawn in the display font - as some fonts make the 
underscore the full width or slightly over the edge of where the character will 
be displayed so that many underscores look all joined up like a line)

These links may provide you with some useful reading around this and what 
underscores signal in Python. 

https://dbader.org/blog/meaning-of-underscores-in-python

https://dbader.org/blog/python-dunder-methods

Happy to have helped and good luck with your Python journey. 

Regards
Alexander

Alexander Neilson
Neilson Productions Limited
021 329 681
alexan...@neilson.net.nz

> On 24/06/2020, at 08:49, Tony Kaloki  wrote:
> 
> 
> Alexander,
>Thank you so much! It worked! Thank you. One question: in 
> your reply, are you saying that Python would have treated the two separate 
> underscores the same way as a long  underscore i.e. it's a stylistic choice 
> rather than a functional necessity?
>In any case, thanks again for your quick and easy to follow - even for me 
> - reply.
> Tony
> 
> Get Outlook for Android
> 
> From: Alexander Neilson 
> Sent: Tuesday, June 23, 2020 9:28:37 PM
> To: Tony Kaloki 
> Cc: python-list@python.org 
> Subject: Re: Pycharm Won't Do Long Underscore
>  
> Hi Tony
> 
> The “long underscore” (often called Dunder as “double underscore”) is 
> actually two underscores as you are seeing shown in PyCharm. 
> 
> However the display of it as one long underscore is a ligature (special font 
> display to communicate clearer) and to enable these in PyCharm go to the 
> settings dialog (depending on windows or Mac this could be in different 
> locations) and select Editor > Font
> 
> In that screen select “enable font ligatures” and if your font supports it 
> (like the default JetBrains Mono does) that will start to display the double 
> underscores as a single long underscore. 
> 
> Regards
> Alexander
> 
> Alexander Neilson
> Neilson Productions Limited
> 021 329 681
> alexan...@neilson.net.nz
> 
> > On 24/06/2020, at 07:57, Tony Kaloki  wrote:
> > 
> > 
> > 
> > Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 
> > 10
> > 
> > From: Tony Kaloki<mailto:tkal...@live.co.uk>
> > Sent: 23 June 2020 19:45
> > To: python-list@python.org<mailto:python-list@python.org>
> > Subject: Pycharm Won't Do Long Underscore
> > 
> > 
> > Hi Guys,
> >   I’ve just begun to learn basic computer programming by 
> > downloading Python and Pycharm and following Youtube tutorials. But I’ve 
> > come across a problem that’s stopped me in my tracks.
> > When I try to do a long underscore __  for classes in Pycharm, it only 
> > gives me two separate single underscores _ _. This is only in Pycharm, no 
> > problems anywhere else. Could you tell me how to fix this, because I can’t 
> > find any answers on the web and I’m not sure if I can go any further in my 
> > learning without being able to get long underscores.
> >Sorry if I’m just being really dense, but like I said I’m an absolute 
> > beginner. Thanks for your time,
> > Tony
> > Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 
> > 10
> > 
> > 
> > -- 
> > https://mail.python.org/mailman/listinfo/python-list
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Alexander Neilson
Hi Tony

The “long underscore” (often called Dunder as “double underscore”) is actually 
two underscores as you are seeing shown in PyCharm. 

However the display of it as one long underscore is a ligature (special font 
display to communicate clearer) and to enable these in PyCharm go to the 
settings dialog (depending on windows or Mac this could be in different 
locations) and select Editor > Font

In that screen select “enable font ligatures” and if your font supports it 
(like the default JetBrains Mono does) that will start to display the double 
underscores as a single long underscore. 

Regards
Alexander

Alexander Neilson
Neilson Productions Limited
021 329 681
alexan...@neilson.net.nz

> On 24/06/2020, at 07:57, Tony Kaloki  wrote:
> 
> 
> 
> Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
> 
> From: Tony Kaloki<mailto:tkal...@live.co.uk>
> Sent: 23 June 2020 19:45
> To: python-list@python.org<mailto:python-list@python.org>
> Subject: Pycharm Won't Do Long Underscore
> 
> 
> Hi Guys,
>   I’ve just begun to learn basic computer programming by 
> downloading Python and Pycharm and following Youtube tutorials. But I’ve come 
> across a problem that’s stopped me in my tracks.
> When I try to do a long underscore __  for classes in Pycharm, it only 
> gives me two separate single underscores _ _. This is only in Pycharm, no 
> problems anywhere else. Could you tell me how to fix this, because I can’t 
> find any answers on the web and I’m not sure if I can go any further in my 
> learning without being able to get long underscores.
>Sorry if I’m just being really dense, but like I said I’m an absolute 
> beginner. Thanks for your time,
> Tony
> Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
> 
> 
> -- 
> https://mail.python.org/mailman/listinfo/python-list
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Grant Edwards
On 2020-06-23, Tony Kaloki  wrote:

>in your reply, are you saying that Python would have treated the
>two separate underscores the same way as a long underscore

No.

There is no long underscore in Python.

In Python, it's always two underscores.

In some fonts, two underscores just _looks_ like a single long
underscore.

--
Grant


-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Tony Kaloki
Alexander,
   Thank you so much! It worked! Thank you. One question: in 
your reply, are you saying that Python would have treated the two separate 
underscores the same way as a long  underscore i.e. it's a stylistic choice 
rather than a functional necessity?
   In any case, thanks again for your quick and easy to follow - even for me - 
reply.
Tony

Get Outlook for Android<https://aka.ms/ghei36>


From: Alexander Neilson 
Sent: Tuesday, June 23, 2020 9:28:37 PM
To: Tony Kaloki 
Cc: python-list@python.org 
Subject: Re: Pycharm Won't Do Long Underscore

Hi Tony

The “long underscore” (often called Dunder as “double underscore”) is actually 
two underscores as you are seeing shown in PyCharm.

However the display of it as one long underscore is a ligature (special font 
display to communicate clearer) and to enable these in PyCharm go to the 
settings dialog (depending on windows or Mac this could be in different 
locations) and select Editor > Font

In that screen select “enable font ligatures” and if your font supports it 
(like the default JetBrains Mono does) that will start to display the double 
underscores as a single long underscore.

Regards
Alexander

Alexander Neilson
Neilson Productions Limited
021 329 681
alexan...@neilson.net.nz

> On 24/06/2020, at 07:57, Tony Kaloki  wrote:
>
> 
>
> Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
>
> From: Tony Kaloki<mailto:tkal...@live.co.uk>
> Sent: 23 June 2020 19:45
> To: python-list@python.org<mailto:python-list@python.org>
> Subject: Pycharm Won't Do Long Underscore
>
>
> Hi Guys,
>   I’ve just begun to learn basic computer programming by 
> downloading Python and Pycharm and following Youtube tutorials. But I’ve come 
> across a problem that’s stopped me in my tracks.
> When I try to do a long underscore __  for classes in Pycharm, it only 
> gives me two separate single underscores _ _. This is only in Pycharm, no 
> problems anywhere else. Could you tell me how to fix this, because I can’t 
> find any answers on the web and I’m not sure if I can go any further in my 
> learning without being able to get long underscores.
>Sorry if I’m just being really dense, but like I said I’m an absolute 
> beginner. Thanks for your time,
> Tony
> Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
>
>
> --
> https://mail.python.org/mailman/listinfo/python-list
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: FW: Pycharm Won't Do Long Underscore

2020-06-23 Thread MRAB

On 2020-06-23 20:18, Tony Kaloki wrote:



Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10

From: Tony Kaloki<mailto:tkal...@live.co.uk>
Sent: 23 June 2020 19:45
To: python-list@python.org<mailto:python-list@python.org>
Subject: Pycharm Won't Do Long Underscore


Hi Guys,
I’ve just begun to learn basic computer programming by 
downloading Python and Pycharm and following Youtube tutorials. But I’ve come 
across a problem that’s stopped me in my tracks.
  When I try to do a long underscore __  for classes in Pycharm, it only 
gives me two separate single underscores _ _. This is only in Pycharm, no 
problems anywhere else. Could you tell me how to fix this, because I can’t find 
any answers on the web and I’m not sure if I can go any further in my learning 
without being able to get long underscores.
 Sorry if I’m just being really dense, but like I said I’m an absolute 
beginner. Thanks for your time,

The "__" is 2 underscores; it's just that they usually appear joined 
together in many fonts.


If you try:

 print('_' * 2)

do they appear joined together or separate? If they appear separate, 
then you can see that that's just how they're displayed in that funt.

--
https://mail.python.org/mailman/listinfo/python-list


FW: Pycharm Won't Do Long Underscore

2020-06-23 Thread Tony Kaloki



Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10

From: Tony Kaloki<mailto:tkal...@live.co.uk>
Sent: 23 June 2020 19:45
To: python-list@python.org<mailto:python-list@python.org>
Subject: Pycharm Won't Do Long Underscore


Hi Guys,
   I’ve just begun to learn basic computer programming by 
downloading Python and Pycharm and following Youtube tutorials. But I’ve come 
across a problem that’s stopped me in my tracks.
 When I try to do a long underscore __  for classes in Pycharm, it only 
gives me two separate single underscores _ _. This is only in Pycharm, no 
problems anywhere else. Could you tell me how to fix this, because I can’t find 
any answers on the web and I’m not sure if I can go any further in my learning 
without being able to get long underscores.
Sorry if I’m just being really dense, but like I said I’m an absolute 
beginner. Thanks for your time,
Tony
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10


-- 
https://mail.python.org/mailman/listinfo/python-list