I have a list containing multiple stings. The strings all start with a "*" and then a "[" with a space in between. Like this:
* [context......
Now i would like to capitalize "c". In other words, i would like to capitalize the first letter of all the strings. But since i use symbols first. the Capitalize() function wont work.
What i have tried is to capitalize the index like this:
list = [i[3].capitalize() for i in list]
The output of this, is just the capitalized letters. And not the rest of the string.