-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaptitalize.py
More file actions
33 lines (24 loc) · 756 Bytes
/
Captitalize.py
File metadata and controls
33 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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.
# Given a full name, your task is to capitalize the name appropriately.
# Input Format
# A single line of input containing the full name, S.
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the solve function below.
def solve(s):
words = []
spl = s.split(" ")
for i in spl:
words.append(i.capitalize())
done = " ".join(words)
return done
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
s = input()
result = solve(s)
fptr.write(result + '\n')
fptr.close()