-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq2.py
53 lines (45 loc) · 1.04 KB
/
q2.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/python3
import math
import os
import random
import re
import sys
#
# Complete the 'transformSentence' function below.
#
# The function is expected to return a STRING.
# The function accepts STRING sentence as parameter.
#
def transformSentence(sentence):
# Write your code here
sentence.strip()
res = ''
ind = 0
for x in sentence:
if(ind==0):
res+= x
ind+=1
elif(x == ' '):
res += x
ind+=1
else:
y = sentence[ind-1]
if(y==' '):
res+= x
ind+=1
elif(y.lower() < x.lower()):
res += x.upper()
ind+=1
elif(y.lower()>x.lower()):
res += x.lower()
ind+=1
else:
res+= x
ind+=1
return res
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
sentence = input()
result = transformSentence(sentence)
fptr.write(result + '\n')
fptr.close()