Op 11/04/2022 om 02:31 schreef Dan Stromberg:
It sounds a little like you're looking for interval arithmetic.
Maybe https://pypi.org/project/python-intervals/1.5.3/ ?
Not completely but it suggested an idea to explore.
--
Antoon.
--
https://mail.python.org/mailman/listinfo/python-list
Op 11/04/2022 om 02:01 schreef duncan smith:
On 10/04/2022 21:20, Antoon Pardon wrote:
Op 9/04/2022 om 02:01 schreef duncan smith:
On 08/04/2022 22:08, Antoon Pardon wrote:
Well my first thought is that a bitset makes it less obvious to
calulate
the size of the set or to iterate over it
On 4/11/22 10:13, Brian Wagstaff via Python-list wrote:
> Dear Python team,
> I am trying to find out how to make my Python programs into executable files
> (.exe, I presume) using Pyinstaller. I searched on line for how to do this
> (the document I came across is headed Data to Fish), and it see
On Mon, 11 Apr 2022 00:14:49 -0700 (PDT), NArshad
declaimed the following:
>for i in issuedBooks:
Loop control variable is "i"...
>i=0
Control variable "i" has been overwritten so any use of "i" following
this is suspicious
>for l in books:
Inner-
On 11 Apr 2022 14:28:51 GMT, Peter Pearson
declaimed the following:
>Is this homework? In this newsgroup, by custom, homework problems
>should be announced as such, since the best answer to a homework
>question is different from the best answer to a real-life problem.
>
It's a return to
On Mon, 11 Apr 2022 00:14:49 -0700 (PDT), NArshad wrote:
[snip]
> books = list(models.Book.objects.filter(isbn=i.isbn))
> students = list(models.Student.objects.filter(user=i.student_id))
> i=0
> for l in books:
>
> t=(students[i].user,students[i].user_i
Dear Python team,
I am trying to find out how to make my Python programs into executable files
(.exe, I presume) using Pyinstaller. I searched on line for how to do this (the
document I came across is headed Data to Fish), and it seemed that Step 1 was
to download the most recent version of Pyth