Re: [Tutor] Proxy for Python?

2019-02-06 Thread Steven D'Aprano
On Wed, Feb 06, 2019 at 02:03:01PM +, beech 48 wrote: > Hi i am totally new to this, i am not a coder and am lost. We are coders and we are still lost, because we can't read your mind and we have no idea what you are talking about. Instagram? How is that relevant? You say you are entering

[Tutor] learning python from scratch

2019-02-06 Thread Michael Munn
dear fellow programmeers, this is michael. I have a question for Python. I'm a beginner Pythonist. I havee been learning the history and it's use for past years. My main focus this year is to learn it's code and begin coding. Where can I find resource for this? All comment are greatly appreciate

Re: [Tutor] text processing lines variable content

2019-02-06 Thread ingo janssen
On 06/02/2019 21:45, Mark Lawrence wrote: So what, you still don't need to chop the front from the list, just process the data. just slice I'd like to adapt the order in that the functions are applied, but how? I suspect that you're trying to over complicate things, what's wrong

Re: [Tutor] text processing lines variable content

2019-02-06 Thread Mark Lawrence
On 06/02/2019 18:51, ingo janssen wrote: On 06/02/2019 19:07, Mark Lawrence wrote: That's going to a lot of work slicing and dicing the input lists. Perhaps a chunked recipe like this https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.chunked would be better. The

Re: [Tutor] text processing lines variable content

2019-02-06 Thread ingo janssen
On 06/02/2019 19:07, Mark Lawrence wrote: That's going to a lot of work slicing and dicing the input lists. Perhaps a chunked recipe like this https://more-itertools.readthedocs.io/en/stable/api.html#more_itertools.chunked would be better. The length of the text chunks varies from a single

Re: [Tutor] text processing lines variable content

2019-02-06 Thread Mark Lawrence
On 06/02/2019 16:33, ingo janssen wrote: For parsing the out put of the Voro++ program and writing the data to a POV-Ray include file I created a bunch of functions. def pop_left_slice(inputlist, length):   outputlist = inputlist[0:length]   del inputlist[:length]   return outputlist

[Tutor] Proxy for Python?

2019-02-06 Thread beech 48
Hi i am totally new to this, i am not a coder and am lost. I have python working on just 1 of my instagram account right now and its working great but i have no proxy in and im afraid i will get kicked off from IG and i cannot loose this account. i am having the hardest time trying to put my

[Tutor] text processing lines variable content

2019-02-06 Thread ingo janssen
For parsing the out put of the Voro++ program and writing the data to a POV-Ray include file I created a bunch of functions. def pop_left_slice(inputlist, length): outputlist = inputlist[0:length] del inputlist[:length] return outputlist this is used by every function to chop of the

Re: [Tutor] Recommended Resurce or strategy for beginning students

2019-02-06 Thread Matthew Polack
Thanks Alan, David and Mike, Really appreciate those thoughts and ideas suggested.. I will check out the full video David...but the part I've looked at has some great food for thought..is extremely relevant.This quote from the description is very true: "showing them how to copy-paste a few