Posts by Mauricio Carneiro Goulart • 1 point
2 posts
-
0
votes1
answer54
viewsA: Problem identifying if a word from a list is present in my string in Python
The problem is I was creating a list of lists. For example: [['supplier'1'],['supplier'2']] The solution was as follows: c = len (providerlist) for i in range(c): providerlist += providerlist[i] Now…
-
-1
votes1
answer54
viewsQ: Problem identifying if a word from a list is present in my string in Python
I’m looking to identify if in my input there are any words that are on a list of words that I created. The code runs normal without presenting any error, however, is missing the result always. Code:…