Re: python

2020-02-22 Thread Frank Millman
On 2020-02-23 9:26 AM, luka beria wrote: hi guys i have another question.how to find the minimum and maximum numbers in this list without using the min () and max () functions use while loop Hi Luka Did you read the reply to your previous question from Dennis Lee Bieber? If not, here it

python

2020-02-22 Thread luka beria
hi guys i have another question.how to find the minimum and maximum numbers in this list without using the min () and max () functions use while loop -- https://mail.python.org/mailman/listinfo/python-list

Why is passing loop argument to asyncio.Event deprecated?

2020-02-22 Thread Frank Millman
Hi all Why is 'explicit passing of a loop argument to asyncio.Event' deprecated (see What's new in Python 3.8)? I use this in my project. I can find a workaround, but it is not elegant. I can explain my use case if requested, but I was just curious to find out the reason. Thanks Frank Mil

Re: Idiom for partial failures

2020-02-22 Thread Ethan Furman
On 02/21/2020 02:51 PM, Rob Gaddi wrote: On 2/21/20 9:18 AM, David Wihl wrote: Yes, the API has to support partial failures across all six supported languages. Not all operations need to be atomic and there is considerable efficiency in having multiple operations sent in a single request. Than

Re: python

2020-02-22 Thread Bev In TX
> On Feb 22, 2020, at 2:42 PM, MRAB wrote: > >> On 2020-02-22 18:18, lberia...@gmail.com wrote: >> hi guys can you help me.how to find maximum and minimum in list using while >> loop python > You don't need to use a loop. Use the 'max' and 'min' functions. Unless it was a homework question, in

Re: python

2020-02-22 Thread MRAB
On 2020-02-22 18:18, lberia...@gmail.com wrote: hi guys can you help me.how to find maximum and minimum in list using while loop python You don't need to use a loop. Use the 'max' and 'min' functions. -- https://mail.python.org/mailman/listinfo/python-list

Re: python

2020-02-22 Thread Python
lberia...@gmail.com wrote: hi guys can you help me.how to find maximum and minimum in list using while loop python l = [1, 4, 2, -1, 0, 4, 2, 1, 10] for i in range(100): pass maximum = max(l) minimum = min(l) -- https://mail.python.org/mailman/listinfo/python-list

python

2020-02-22 Thread lberia460
hi guys can you help me.how to find maximum and minimum in list using while loop python -- https://mail.python.org/mailman/listinfo/python-list

Help with oop

2020-02-22 Thread S Y
How can I use remove,add and verify methods in class oop. Which has tuple with allowed values inside class. Like two classes cart and inventory Get Outlook for iOS -- https://mail.python.org/mailman/listinfo/python-list

Errors in testing the SciPy installation

2020-02-22 Thread Markos
Hi, Following the guidelines of the book Learning SciPy for Numerical and Scientific Computing Second Edition I did the tests: >>> import scipy >>> scipy.test() and got some errors: Ran 23065 tests in 490.568s FAILED (KNOWNFAIL=60, SKIP=1795, errors=29) What should I do? Thank you, Mark