def partition (strings, char): if strings == []: print('') else: for string in strings: if string[0] == char: print(string)
if string[0].upper() == char.upper():
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)