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

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 yo

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 t

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 >> prob

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 th

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 a

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,

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 shoul

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

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 speci

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 unders

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, > >> > Than

Re: Pycharm Won't Do Long Underscore

2020-06-24 Thread Tony Kaloki
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

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 t

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 th

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

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.

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Alexander Neilson
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 &

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Alexander Neilson
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 > downlo

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

Re: Pycharm Won't Do Long Underscore

2020-06-23 Thread Tony Kaloki
t; 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

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

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,