{"id":20216,"date":"2021-09-09T19:57:26","date_gmt":"2021-09-09T14:27:26","guid":{"rendered":"https:\/\/python-programs.com\/?p=20216"},"modified":"2021-11-22T18:36:25","modified_gmt":"2021-11-22T13:06:25","slug":"python-program-to-convert-alternate-characters-to-capital-letters","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-convert-alternate-characters-to-capital-letters\/","title":{"rendered":"Python Program to Convert Alternate Characters to Capital Letters"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Check Two Matrix are Equal or Not<\/a><\/p>\n

Given a string, and the task is to convert the alternate characters to capital letters for a given string in python<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given String = \"good morning btechgeeks\"<\/pre>\n

Output:<\/strong><\/p>\n

The given string after converting alternate characters into capital letters :\r\nGoOd MoRnInG bTeChGeEkS<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given String = \"hello this is btechgeeks\"<\/pre>\n

Output:<\/strong><\/p>\n

The given string after converting alternate characters into capital letters :\r\nHeLlO tHiS iS bTeChGeEkS<\/pre>\n

Program to Convert Alternate Characters to Capital Letters in Python<\/h2>\n

Below are the ways to convert the alternate characters to capital letters for a given string in python:<\/p>\n