Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Partial key lookup in dictionary
Post: Partial key lookup in dictionary

Hi, Anyone ever needed to do a partial key lookup in a dictionary? By this for example I mean: starting_key = myDict.getLike("Que*") while starting_key is not None: print(myDict[starting_key]) ...
GaryNR General Coding Help 1 3,440 Jul-16-2020, 06:48 PM
    Thread: Python performance
Post: RE: Python performance

Here's an old example program I did sometime back just to test the speed increase using numba: from numba import jit import time ITERATIONS = 5000_000 MAXFIB = 20 @jit(nopython=True) def fastSum(ma...
GaryNR News and Discussions 4 2,331 Jun-23-2020, 01:03 PM
    Thread: What do you use Python with?
Post: What do you use Python with?

Hi all, Perhaps this isn't the correct forum for my question, so apologies in advance. What do you use Python with & for? E.g. do you Django/Flask, or Keras for CNN, or for machine learning or A...
GaryNR News and Discussions 1 1,541 Jun-22-2020, 07:26 PM
    Thread: Python performance
Post: RE: Python performance

Have you looked at Numba at all? Numba I've tried it out with some fairly simple examples and had quite a lot of success with it, at least worth looking into eh? Regards Gary
GaryNR News and Discussions 4 2,331 Jun-22-2020, 07:12 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020