-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreverse_sentence.py
78 lines (55 loc) · 1.41 KB
/
reverse_sentence.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import sys
vowel = ['a','e', 'i', 'o', 'u']
def reverse_sentence(input_sentence):
output_sentence = ''
length = len(input_sentence)
for i in range(0,length):
output_sentence += input_sentence[length - i - 1]
return output_sentence
def reverse_word(input_sentence):
output_sentence = []
words = input_sentence.split()
for i in words:
output_sentence.append(reverse_sentence(i))
return " ".join(output_sentence)
def reverse_wo_word(input_sentence):
output_sentence = []
words = input_sentence.split(" ")
l = len(words)
for i in range(0,l):
output_sentence.append(words[l-i-1])
return " ".join(output_sentence)
def square(x):
return x * x
def eliminate_odds(x):
return x % 2 == 0
def add(x, y):
return x + y
def get_vowels(x):
return x in vowel
def vowel_count(x):
pass
if __name__ == "__main__":
"""
# print "%sfoo" % reverse_wo_word(sys.argv[1])
print map(square, range(0, 9))
print filter(eliminate_odds, range(0,9))
print reduce(add, range(0,9))
sentence = 'These are not vowels'
print sentence
print filter(eliminate_vowels, sentence)
boolval = eliminate_vowels('a')
print not boolval
"""
sentence = 'These are not vowels'
print sentence
vowel_dict = dict()
for i in vowel:
vowel_dict[i] = 0
# print vowel_dict
vowels_sentence = filter(get_vowels, sentence)
for i in vowels_sentence:
vowel_dict[i] += 1
print(vowel_dict)
del vowel_dict['o']
print vowel_dict.keys()