Abdur-Rahmaan Janhangeer wrote:
> I've got my answers but the 'wandering' a bit
> on this thread is at least connected to the topic ^^.
>
> Last question: If we check for wifi or ethernet cable connection?
>
> Wifi sometimes tell of connected but no internet connection.
> So it detected that there
Abdur-Rahmaan Janhangeer wrote:
> Well, nice perspective.
>
> It's a valid consideration, sound theory
> but poor practicality according to me.
On the contrary: It is absolutely the right and only way to do it.
> It you view it like this then between the moment
> we press run or enter key on the
I know next to nothing about computer coding nor Python.
However, I am working on a mathematical challenge in which coding is
required to calculate and generate different potential solutions.
Can anyone help? If so, please private message me and we can discuss in
more detail.
Many thanks,
Richar
Shaozhong SHI wrote:
> Can it be divided into several processes?
I'd do it like this:
from time import sleep
from threading import Thread
t = Thread(target=lambda: sleep(1))
t.run()
# do your work here
t.wait()
--
https://mail.python.org/mailman/listinfo/python-list
On 2022-02-23 at 09:28:40 -0700,
Akkana Peck wrote:
> 2qdxy4rzwzuui...@potatochowder.com writes:
> > I think someone said it way upthread: don't check, just do whatever you
> > came to do, and it will work or it will fail (presumably, your program
> > can tell the difference, regardless of a pas
On Thu, 24 Feb 2022 at 03:39, Akkana Peck wrote:
>
> 2qdxy4rzwzuui...@potatochowder.com writes:
> > I think someone said it way upthread: don't check, just do whatever you
> > came to do, and it will work or it will fail (presumably, your program
> > can tell the difference, regardless of a past
2qdxy4rzwzuui...@potatochowder.com writes:
> I think someone said it way upthread: don't check, just do whatever you
> came to do, and it will work or it will fail (presumably, your program
> can tell the difference, regardless of a past snapshot of being able to
> retrieve data from an arbitrary
On 22/02/2022 10:44, Frank Millman wrote:
On 2022-02-22 11:30 AM, Chris Angelico wrote:
On Tue, 22 Feb 2022 at 20:24, Frank Millman wrote:
Hi all
I think this should be a simple one-liner, but I cannot figure it out.
I have a dictionary with a number of keys, where each value is a single
li