-
Notifications
You must be signed in to change notification settings - Fork 0
/
numeros.py
executable file
·33 lines (25 loc) · 1.02 KB
/
numeros.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
print(4)
print(type(4))
print('------')
print(14.70)
print(type(14.70))
print('=========================================')
print('Numero a partir das funções in e float')
print('=========================================', end='\n\n')
preco_ingrediente = 14.70
print('Preço Ingrediente float: ', preco_ingrediente, type(preco_ingrediente))
print('Preço Ingrediente int: ',int(preco_ingrediente), type(int(preco_ingrediente)))
print('')
total_estoque = 54
print('Estoque int', total_estoque, type(total_estoque))
print('Estoque float', float(total_estoque), type(float(total_estoque)))
print('')
faturamento = '10_000'
print('Faturamento string: ', faturamento, type(faturamento))
print('Faturamento int: ', int(faturamento), type(int(faturamento)))
print('Faturamento float: ', float(faturamento), type(float(faturamento)))
print('')
imposto = '29.5'
print('Imposto string: ', imposto, type(imposto))
print('Imposto float: ', float(imposto), type(float(imposto)))
print('Imposto int: ', int(float(imposto)), type(int(float(imposto))))