How to 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 a list of only those letters that follow the "/" symbol ie
desired_output = ['b','d','f']
The code will be very helpful.
source share