[Tutor] Spyder - How to determine files that appear at start-up

2018-10-08 Thread Shall, Sydney via Tutor
My question concerns Spyder. I know that this is a Python list, but I also see that some people here also use Spyder. So, please forgive me. My problem is simple. I cannot find out how I can determine the set of files that open at start-up. I am annoyed by the fact that I must manually load my

Re: [Tutor] [spoiler] Re: Shifting arrays as though they are a 'word'

2018-10-08 Thread Chip Wachob
All, Sorry for not being more clear. I think I was nearing my fill of Python for the day when I wrote. Now, refreshed, let me see if I can fill in the blanks a bit more. - Bits that are shifted in either direction off the end of the 64-byte(or 'n' size) collection are of no use. They are actua

Re: [Tutor] Spyder - How to determine files that appear at start-up

2018-10-08 Thread Oscar Benjamin
On Mon, 8 Oct 2018 at 13:18, Shall, Sydney via Tutor wrote: > > My question concerns Spyder. I know that this is a Python list, but I > also see that some people here also use Spyder. So, please forgive me. > > My problem is simple. I cannot find out how I can determine the set of > files that ope

Re: [Tutor] [spoiler] Re: Shifting arrays as though they are a 'word'

2018-10-08 Thread Steven D'Aprano
On Mon, Oct 08, 2018 at 09:16:16AM -0400, Chip Wachob wrote: > - What follows is a mini version, the array could be any size up to 64 bytes > > input: 10010010 . 1110 . 01010011 > > shift 'x' (for example, I'll use 1) > > output: 01001001 . 01110111 . 10101001 The first two seem to be simp

Re: [Tutor] [spoiler] Re: Shifting arrays as though they are a 'word'

2018-10-08 Thread Mats Wichmann
On 10/08/2018 07:16 AM, Chip Wachob wrote: > All, > > Sorry for not being more clear. I think I was nearing my fill of > Python for the day when I wrote. > > Now, refreshed, let me see if I can fill in the blanks a bit more. > > - Bits that are shifted in either direction off the end of the > 6