-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabuada.py
39 lines (34 loc) · 1.15 KB
/
tabuada.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
import pytest
def tabuada(num):
resposta = ''
for i in range(1,11): # i é abreviação de iterator / incremento
resultado = i * num
print(f'\n {i} x {num} = {resultado}') # 2
if i == 1:
resposta = str(resultado)
else:
resposta = resposta + ',' + str(resultado)
return resposta
def tabuada_vetor(num):
resposta = []
for i in range(1,11): # i é abreviação de iterator / incremento
resultado = str(i * num)
print(f'\n {i} x {num} = {resultado}') # 2
resposta.append(str(i*num))
'''
if i == 1:
resposta = resultado
else:
resposta.append(resultado)
'''
return resposta
def test_tabuada():
num = 2
resposta_esperada = '2,4,6,8,10,12,14,16,18,20'
assert tabuada(num) == resposta_esperada
print(f'\n Tabuada do {num} \n {resposta_esperada}')
def test_tabuada_vetor():
num = 2
resposta_esperada = ['2', '4', '6', '8', '10', '12', '14', '16', '18', '20']
assert tabuada_vetor(num) == resposta_esperada
print(f'\n Tabuada do {num} \n {resposta_esperada}')