Python | Split CamelCase string to individual strings
Given a string in a camel-case, write a Python program to split each word in the camel case string into individual strings. Examples: Input : "GeeksForGeeks" Output : ['Geeks', 'For', 'Geeks'] Input : "ThisIsInCamelCase" Output : ['This', 'Is', 'In', 'Camel', 'Case'] Method #1: Naive Approach A naiv