Capitalize in Python HackerRank Solution

Hello Programmers, In this post, you will know how to solve the Capitalize in Python HackerRank Solution. This problem is a part of the HackerRank Python Programming Series.

Capitalize in Python HackerRank Solution
Capitalize in Python HackerRank Solution

One more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.

Capitalize in Python HackerRank Solutions

problem

You are asked to ensure that the first and last names of people begin with a capital letter in their passports. For example, alison heck should be capitalised correctly as Alison Heck.
alison heck => Alison Heck
Given a full name, your task is to capitalize the name appropriately.

Input Format :

A single line of input containing the full name, S.

Constraints :

  • 0 < len(S) < 1000
  • The string consists of alphanumeric characters and spaces.

Note: in a word only the first character is capitalized. Example 12abc when capitalized remains 12abc.

Output Format :

Print the capitalized string, S.

Sample Input :

chris alan

Sample Output :

Chris Alan

Capitalize in Python HackerRank Solutions

import math
import os
import random
import re
import sys
# Complete the solve function below.
def solve(s):
    a= s.title()
    return a
if __name__ == '__main__':
    fptr = open(os.environ['OUTPUT_PATH'], 'w')
    s = input()
    result = solve(s)
    fptr.write(result + '\n')
    fptr.close()

Disclaimer: The above Problem (Capitalize in Python) is generated by Hackerrank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.

Next: Merge the Tools in python HackerRank Solution

Leave a Reply

Your email address will not be published. Required fields are marked *