Question: Write code to break up a string variable my_str into a list of words called my_lst where each word is separated from the next by

Write code to break up a string variable my_str into a list of words called my_lst where each word is separated from the next by a colon (:). If the number of elements in the list is less than 5, print out a new_lst which is the same as my_lst. Otherwise, return the 4thand 5thword from the list and store it in new_lst.For example, if my_str ='Chetna:Akshayapatra:Asha:Ekal:Pratham:AimFor Seva' then the results should be['Ekal', 'Pratham'].

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!