While reading in the inputs you can do:
while m != 0:
read_in_string = stdin.readline()
lista.append(read_in_string.lower())
m -= 1
To make the things in lista lower case
solved Turn python list into lowercase
While reading in the inputs you can do:
while m != 0:
read_in_string = stdin.readline()
lista.append(read_in_string.lower())
m -= 1
To make the things in lista lower case
solved Turn python list into lowercase