Managing plug-ins

2020-02-23 Thread DL Neil via Python-list
Please recommend a library which will manage plug-ins. (Regret that searching PyPi or using a web SE results in an overwhelming number of 'false positives') Not wanting to 'reinvent the wheel, have been looking for an 'approved' way to manage a set of previously-prepared routines plus user-a

Re: Help with oop

2020-02-23 Thread DL Neil via Python-list
On 24/02/20 10:45 AM, S Y wrote: """ The class Baggage will track inventory items added to or removed from it. Inventory items will be represented by inventory item objects created using the ‘InventoryItem’ class. When an attempt is made to add an inventory item to a Baggage object, the number o

Re: Help with oop

2020-02-23 Thread DL Neil via Python-list
On 22/02/20 10:45 PM, S Y wrote: 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 Please show the code you have so-far. What are you removing, adding, and verifying? Are you aware of the Python-Tutor

Re: python

2020-02-23 Thread Grant Edwards
On 2020-02-22, Python wrote: > 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) The requirement is to us

Re: python

2020-02-23 Thread Souvik Dutta
Try it yourself first. It is very easy. On Sun, Feb 23, 2020, 1:00 PM 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 > -- > https://mail.python.org/mailman/listinfo/py