Programming Examples
Python program to inter list of string and create a new list that consist of those strings with their first characters removed
Ask the user to inter list of string. Create a new list that consist of those strings with their first characters removed.
Output/ Explanation:
Enter List with string elements : ['infomax','computer','academy']
Original List ['infomax', 'computer', 'academy']
Result List ['nfomax', 'omputer', 'cademy']