forked from henriquebastos/pacote-desafios-pythonicos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
06_not_bad.py
49 lines (38 loc) · 1.42 KB
/
06_not_bad.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
"""
06. not_bad
Dada uma string, encontre a primeira aparição das
substrings 'not' e 'bad'. Se 'bad' aparecer depois
de 'not', troque todo o trecho entre 'not' e 'bad'
por 'good' e retorne a string resultante.
Exemplo: 'The dinner is not that bad!' retorna 'The dinner is good!'
"""
# TODO: Tentar implementar com expressões regulares no futuro
def not_bad(s):
not_idx = s.find('not')
bad_idx = s.find('bad')
if bad_idx > not_idx:
bad_idx += 3
message = s.replace(s[not_idx:bad_idx], 'good')
else:
message = s
return message
# --- Daqui para baixo são apenas códigos auxiliáries de teste. ---
def test(f, in_, expected):
"""
Executa a função f com o parâmetro in_ e compara o resultado com expected.
:return: Exibe uma mensagem indicando se a função f está correta ou não.
"""
out = f(in_)
if out == expected:
sign = '✅'
info = ''
else:
sign = '❌'
info = f'e o correto é {expected!r}'
print(f'{sign} {f.__name__}({in_!r}) retornou {out!r} {info}')
if __name__ == '__main__':
# Testes que verificam o resultado do seu código em alguns cenários.
test(not_bad, 'This movie is not so bad', 'This movie is good')
test(not_bad, 'This dinner is not that bad!', 'This dinner is good!')
test(not_bad, 'This tea is not hot', 'This tea is not hot')
test(not_bad, "It's bad yet not", "It's bad yet not")