EuroPython 2021: Speaker Mentorship Program

2021-04-28 Thread M.-A. Lemburg
In the EuroPython community, diversity and inclusion are one of our core values. Therefore, we are launching a Speaker Mentorship Program in this year's edition. * EuroPython 2021 Speaker Mentorship Program * https://ep2021.europython.eu/events/call-for-proposals/ We know how

Re: Not found in the documentation

2021-04-28 Thread Peter J. Holzer
On 2021-04-27 06:42:38 -0700, elas tica wrote: > > The *Language Reference* is designed to be much more formally defined, and > > favors correctness and completeness over being easy to access by less > > technical readers. > > > > > Not really my opinion. Language Reference (LR) style is stil

Re: Start Python programming

2021-04-28 Thread Alan Gauld via Python-list
On 27/04/2021 18:32, Gazoo wrote: > I'd like to start learning Python programming. What sites/tutorials > could you recommend for beginner, please. There is a getting started page on the python web site with links to guide you to many listed suggestions - books, web tutorials, video courses etc.

cant use certain commands, leading to more problems

2021-04-28 Thread Rasig Kosonmontri
Hi i was using python for a while and one day i decided to try out a module called "pyinstaller" i installed it with pip and try to run it as a cmdlet, still didnt work i then searched online for solutions and people tell me to try "python -m pyinstaller" to run it directly with python, still didnt

Plot maps in 3D

2021-04-28 Thread Jorge Conforte
Hi, I would like know if it is posible to plot the south in north poles in 3D earth maps. I search in google and always all examples is for cylindric projection, like this: bm = Basemap(llcrnrlon=extent[0], llcrnrlat=extent[2], urcrnrlon=extent[1], urcrnrlat=extent[3],

Re: cant use certain commands, leading to more problems

2021-04-28 Thread Michael Torrie
On 4/28/21 4:00 AM, Rasig Kosonmontri wrote: > so i heard that the microsoft store's version of python tends to hide > itself. and so i uninstalled it > but when i typed in to a powershell it just directs me to the > mircrosoft store's page > i then disabled it from doing that and install python fr

Re: Not found in the documentation

2021-04-28 Thread elas tica
Peter J. Holzer a écrit : > That's why it's called a container. But it also says *what* an object > must contain to be called a container. You could say that an int object > contains an integer value and a str object contains a reference to a > buffer containing the string - but those aren't re

Re: Not found in the documentation

2021-04-28 Thread Chris Angelico
On Thu, Apr 29, 2021 at 1:21 AM elas tica wrote: > > Peter J. Holzer a écrit : > > > That's why it's called a container. But it also says *what* an object > > must contain to be called a container. You could say that an int object > > contains an integer value and a str object contains a reference

Re: Not found in the documentation

2021-04-28 Thread elas tica
Le mercredi 28 avril 2021 à 17:36:32 UTC+2, Chris Angelico a écrit : > > if a string or a range object is a container or not. For instance, > > can we say that range(100) contains 42 ? > Not by that definition of container. Which definition? ;) > some objects have references to other object

Re: Not found in the documentation

2021-04-28 Thread Chris Angelico
On Thu, Apr 29, 2021 at 5:16 AM elas tica wrote: > > > Le mercredi 28 avril 2021 à 17:36:32 UTC+2, Chris Angelico a écrit : > > > > if a string or a range object is a container or not. For instance, > > > can we say that range(100) contains 42 ? > > Not by that definition of container. > > Which d

Re: cant use certain commands, leading to more problems

2021-04-28 Thread Terry Reedy
On 4/28/2021 10:09 AM, Michael Torrie wrote: On 4/28/21 4:00 AM, Rasig Kosonmontri wrote: so i heard that the microsoft store's version of python tends to hide itself. and so i uninstalled it but when i typed in to a powershell it just directs me to the mircrosoft store's page i then disabled it

Re: Not found in the documentation

2021-04-28 Thread elas tica
Le mercredi 28 avril 2021 à 17:36:32 UTC+2, Chris Angelico a écrit : > In what sense of the word "token" are you asking? The parser? You can > play around with the low-level tokenizer with the aptly-named > tokenizer module. It was a good suggestion, and the PLR doesn't mention the tokeniser m