how to go through a list and compare every item to a string python code example
Example 1: check if string equals string in list python
if any(x in paid[j] for x in d):
# do stuff
Example 2: how to make every item compare the rest items of list in python
for i in range(len(mylist)):
for j in range(i + 1, len(mylist)):
compare(mylist[i], mylist[j])
Example 3: comparing strings in array python
def bubbleSort(myArr):
for i in range (0, len(myArr) - 1):
for j in range (0, len(myArr) - 1 - i):
if myArr[j].casefold() > myArr[j + 1].casefold():
myArr[j],myArr[j + 1] = myArr[j+1], myArr[j]
return myArr
print(bubbleSort(myArr))
# remove casefold if not list is uniform