Psiloc
0
Q:

comparing strings in python

string_a = "banana"
string_b = "banana"
if string_a == string_b:
  print("TRUE")
else: 
	print("FALSE")
# in this case the console will print TRUE
4
a = str('Hello') #Assigning variables
b = str('World')

if a == b: # Checking to see if they are the same 
  print('False')
1
fruit1 = 'Apple'

print(fruit1 == 'Apple')
print(fruit1 != 'Apple')
print(fruit1 < 'Apple')
print(fruit1 > 'Apple')
print(fruit1 <= 'Apple')
print(fruit1 >= 'Apple')
3
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