Data = [
['2019-01-19','Fred Flintstone',23],
['2019-02-01','Scooby doo', 99]
]
Warning 3: age is not a fundamental attribute; it is a computed value!
--
Bob Gailer
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subscription opti
On 8/07/19 10:54 AM, Alan Gauld via Tutor wrote:
On 07/07/2019 20:54, David L Neil wrote:
(However, some of us grew-up at a time when RAM was expensive and even
in our relaxed state, such 'costs' still impinge on our consciousness -
Indeed, my first computer was at the local university and ha
On 07/07/2019 20:54, David L Neil wrote:
> (However, some of us grew-up at a time when RAM was expensive and even
> in our relaxed state, such 'costs' still impinge on our consciousness -
Indeed, my first computer was at the local university and had 64KB.
My second computer was a Sinclair ZX81
On 8/07/19 2:48 AM, Alan Gauld via Tutor wrote:
On 07/07/2019 09:19, David L Neil wrote:
First-off, it has to be said that "100's of elements" suggests using an
RDBMS - particularly if 'age' (eg 23 and 99) is not the only likely
selection mechanism.
Multiple selection mechanisms might suggest
On 7/6/19 8:39 PM, mhysnm1...@gmail.com wrote:
> Hi all.
>
> In C, you can use pointers to reference variables, arrays, ETC. In python, I
> do not recall anything specifically that refers to such a capability. What I
> want to do is:
>
> I want to create different data structures such as dictiona
On 07/07/2019 09:19, David L Neil wrote:
> First-off, it has to be said that "100's of elements" suggests using an
> RDBMS - particularly if 'age' (eg 23 and 99) is not the only likely
> selection mechanism.
Multiple selection mechanisms might suggest an RDBMS but hundreds of
items is chickenfee
First-off, it has to be said that "100's of elements" suggests using an
RDBMS - particularly if 'age' (eg 23 and 99) is not the only likely
selection mechanism.
On 7/07/19 2:39 PM, mhysnm1...@gmail.com wrote:
Hi all.
In C, you can use pointers to reference variables, arrays, ETC. In python, I
On 07/07/2019 03:39, mhysnm1...@gmail.com wrote:
> In C, you can use pointers to reference variables, arrays, ETC. In python, I
> do not recall anything specifically that refers to such a capability.
In Python a variable is a name that refers to an object.
Many names can refer to the same object.