Skip to content

Tag: python

Check substring with 1 character difference in python

I have list of thousand of strings sub_strings, and list of millions of strings strings I want to check if strings[i] have substring from sub_strings or substring that’s different in 1 character expected Answer Here’s a route for solving: That will spit out [True, True, True, True, False, True] Bu…

While Loop break stops my statement from Printing

(Python/PythonAnywhere) My Code Now: This is what goes after: (The code didn’t wanna include this) The problem, (from what i can understand) is that the break messes with the print, “I’m Sorry” and when the loop is broken, it also stops the print from printing, moving on to asking the …

Save keras preprocessing layer

I have a model where I’m doing different preprocessing, outside the model itself. One part of the preprocessing is using a category encoder based on keras with: I apply this than with to my pandas dataframe. Now I want to store my model and in order to store the model I also have to store the 2 preproce…