Re: [Tutor] Finding unique strings.

2019-05-04 Thread mhysnm1964
From: Tutor On Behalf Of Mark Lawrence Sent: Saturday, 4 May 2019 7:35 AM To: tutor@python.org Subject: Re: [Tutor] Finding unique strings. On 03/05/2019 13:07, mhysnm1...@gmail.com wrote: > All, > > I have a list of strings which has been downloaded from my bank. I am > trying to b

Re: [Tutor] Finding unique strings.

2019-05-03 Thread Cameron Simpson
On 03May2019 22:07, Sean Murphy wrote: I have a list of strings which has been downloaded from my bank. I am trying to build a program to find the unique string patterns which I want to use with a dictionary. So I can group the different transactions together. Below are example unique strings w

Re: [Tutor] Finding unique strings.

2019-05-03 Thread Mark Lawrence
On 03/05/2019 13:07, mhysnm1...@gmail.com wrote: All, I have a list of strings which has been downloaded from my bank. I am trying to build a program to find the unique string patterns which I want to use with a dictionary. So I can group the different transactions together. Below are example un

Re: [Tutor] Finding unique strings.

2019-05-03 Thread Roger B. Atkins
It would probably make things easier if you specified your operating system, Python version, data file type and location. Typically, the bank info would be downloadable as a CSV (comma separated value) file. Assuming that to be the case, and assuming you are using Windows, and assuming Python 3, a

[Tutor] Finding unique strings.

2019-05-03 Thread mhysnm1964
All, I have a list of strings which has been downloaded from my bank. I am trying to build a program to find the unique string patterns which I want to use with a dictionary. So I can group the different transactions together. Below are example unique strings which I have manually extracted fro