[Solved] Python Character Casing
Here’s what’s wrong with your code: You’re using *args which would expand the string you’re passing into the function’s arguments which is not what you want. I’ve replaced it with arg. You’re using x[n] instead of simply x. When you’re looping through the string, you’re going at it one character at a time. Therefore, simply … Read more