user68076
0
Q:

comparing strings in array python

a = str('Hello') #Assigning variables
b = str('World')

if a == b: # Checking to see if they are the same 
  print('False')
1
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
0

New to Communities?

Join the community