-
Notifications
You must be signed in to change notification settings - Fork 0
/
exerc076.py
29 lines (26 loc) · 922 Bytes
/
exerc076.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
import random
print('-==-'*50)
print('EXERCÍCIO 76 - LISTA DE COMPRAS')
print('-==-'*50)
print("#"*40)
print(f'{"MERCADO GREGMASTER":^40}')
print("#"*40)
compras=('Pão',1,'Leite',3.50,'Maça',5.00,'Arroz',11.50,'Bife',19.85)
print(f'{"Produtos":<28}{"Preço (R$)"}')
print('-'*40)
for c in range(0,len(compras),2):
print(f'{compras[c]:.<30}R$ {compras[c+1]:0.2f}')
print('-'*40)
print('\n\n')
nome='Gregorio'
print("Prazer em te conhecer {}!".format(nome))
print("#"*10)
print("[ESCREVE COM 20 ESPACO]Prazer em te conhecer {:20}!".format(nome))
print("#"*10)
print("[ALINHADO A DIREITA 20 ESPACO]Prazer em te conhecer {:>20}!".format(nome))
print("#"*10)
print("[ALINHADO A ESQUERDA 20 ESPACO]Prazer em te conhecer {:<20}!".format(nome))
print("#"*10)
print("[CENTRALIZADO]Prazer em te conhecer {:^20}!".format(nome))
print("#"*10)
print("[CENTRALIZADO COM UM SIMBOLO]Prazer em te conhecer {:=^20}!".format(nome))