comparing strings in python code example

Example 1: 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

Example 2: compare string in python

a=input()
b=input()  #reading two strings from user
c1=0
c2=0
#using for loop
for i in a:
  c1=+1
for j in b:
  c2=+2
return c1>c2 #shows true if len of string a is grater than b else it will show false
return c1==c2 #shows true if len of a and b are same