See attached.
On Monday, January 14, 2019 at 9:07:18 PM UTC-8, Peter Bienstman wrote:
>
> Can you attach that file?
>
> Thanks!
>
> Peter
>
>
> ------------------------------
> *From:* JDelage <[email protected] <javascript:>>
> *Sent:* Tuesday, 15 January 2019 01:22
> *To:* mnemosyne-proj-users
> *Subject:* [mnemosyne-proj-users] Error when trying to import a set of
> cards
>
> I'm using 2.6.1 version.
>
> I tried to import a tab delimited txt file and I got the following:
>
> [image: Screen Shot 2019-01-14 at 4.20.06 PM.png]
>
> --
> You received this message because you are subscribed to the Google Groups
> "mnemosyne-proj-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected] <javascript:>.
> To post to this group, send email to [email protected]
> <javascript:>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/mnemosyne-proj-users/19c83f08-2001-4107-a69c-ec66507e19cd%40googlegroups.com
>
> <https://groups.google.com/d/msgid/mnemosyne-proj-users/19c83f08-2001-4107-a69c-ec66507e19cd%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
--
You received this message because you are subscribed to the Google Groups
"mnemosyne-proj-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/mnemosyne-proj-users/143dcf1b-6d1c-4ce5-8c1b-64189a8afc93%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
**** can be omitted when defining a tuple. Parentheses
Give an example of tuple unpacking. dimensions = 50, 45, 67<br>length,
width, height = dimensions<br>print("The dimensions are
{}x{}x{}".format(length, width, height))
How to efficiently assign 3 variables into a tuple? length, width, height =
50, 45, 67
What type is this object?<br>dimensions = 50, 45, 67 Tuple
How are tuples different from lists They're immutable
When would one use a tuple rather than a list? When one wants to keep a list
of, say, numbers that will always be together, e.g., latitude and longitude, or
the 3 dimensions, etc.
A tuple is a data type for immutable ordered sequence of elements
immutable
A tuple is a data type for immutable *** sequence of elements ordered
A *** is a data type for immutable ordered sequence of elements tuple
This code creates a tuple:<br>dimensions = 52, 40, 100<br>How to efficiently
unpack the tuple into 3 variables? length, width, height = dimensions