Is there any function that can take a "string" and yield all situation of small and Capital letters every time i call function in a loop which is possible.for example:
i give "string" to function
and it yield all of situation like:
"String"
"sTring"
"stRing"
"strIng"
"striNg"
"strinG"
"STring"
"StRing"
"StrIng"
"StriNg"
"StrinG"
...
I am new in python and i do not have any idea i though there might be a library or function that can do that.