Working on 2015-12-05 part 2
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
#!/bin/python3
|
||||
|
||||
import sys
|
||||
from pprint import pprint
|
||||
|
||||
input_f = sys.argv[1]
|
||||
|
||||
result = 0
|
||||
|
||||
with open(input_f) as file:
|
||||
for line in file:
|
||||
tmp = line.rstrip()
|
||||
print(tmp)
|
||||
vowel_count = 0
|
||||
t = ['ab','cd','pq','xy']
|
||||
for i in t:
|
||||
if tmp.find(i) != -1:
|
||||
print(tmp + " is naughty because it contains " + i)
|
||||
break
|
||||
f = 'aeiou'
|
||||
go_on = False
|
||||
for idx,i in enumerate(tmp):
|
||||
if idx+1 < len(tmp):
|
||||
#print(idx,idx+1,len(tmp))
|
||||
if i == tmp[idx+1]:
|
||||
go_on = True
|
||||
if f.find(i) != -1:
|
||||
vowel_count += 1
|
||||
if vowel_count == 3:
|
||||
print(tmp + " is nice because it contains " + str(vowel_count) + " vowels and " + i + tmp[idx+1])
|
||||
|
||||
#cd, pq, or xy
|
||||
print()
|
||||
print(result)
|
||||
@@ -0,0 +1,5 @@
|
||||
ugknbfddgicrmopn
|
||||
aaa
|
||||
jchzalrnumimnmhp
|
||||
haegwjzuvuyypxyu
|
||||
dvszwmarrgswjxmb
|
||||
Reference in New Issue
Block a user