Python - Breaking Up String Variables
Prerequisite: itertools Given a String, the task is to write a Python program to break up the string and create individual elements. Input : GeeksForGeeksOutput : [ 'G', 'e', 'e', 'k', 's', 'F', 'o', 'r', 'G', 'e', 'e', 'k', 's' ] Input: ComputerOutput: [ 'C', 'o', 'm', 'p', 'u', 't', 'e', 'r'] Belo