How can I create a list from another list using python? If I have a list:
input = ['a/b', 'g', 'c/d', 'h', 'e/f']
How can I create the list of only those letters that follow slash "/" i.e.
desired_output = ['b','d','f']
A code would be very helpful.