-
Notifications
You must be signed in to change notification settings - Fork 231
/
06_not_bad.py
41 lines (31 loc) · 1.19 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
"""
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!'
"""
def not_bad(s):
# +++ SUA SOLUÇÃO +++
return
# --- 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")