-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeste.py
51 lines (37 loc) · 1.08 KB
/
Teste.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
import pytest
# num1 = int(input('Qual a quantidade de caixa de fosforo? '))
num1 = 10
print(f'O numero escolhido foi: {num1}')
print('Lembrete: A caixa contém 40 palitos')
num2 = 40
def calcular_fosforos(num1, num2):
return num1 * num2
print(f'O numero total de palitos é: {calcular_fosforos(num1, num2)}')
# ===========================================================================
res = []
# num = int(input('Qual o numero que deseja fazer a tabuada? '))
num = 10
def tabuada():
# num = 2
print(f'O numero escolhido foi: {num}')
for i in range(11):
print(f'{num} x {i} = {num * i}')
res.insert(i, num * i)
print(res)
tabuada()
def teste_fosforos():
num1 = 10
num2 = 40
resultado_esperado = 400
resultado_atual = calcular_fosforos(num1, num2)
assert resultado_esperado == resultado_atual
def teste_tabuada():
res2 = []
num = 2
for i in range(11):
print(f'{num} x {i} = {num * i}')
res2.insert(i, num * i)
print(res)
print(res2)
for i in range(11):
assert res[i:11] == res2[i:11]