Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. import random
  2. import time
  3.  
  4.  
  5. def loja(i1,p1,i2,p2,i3,p3):
  6. print('eu sou jonathan,como posso ajudar?')
  7. escolha = int(input('''[comprar]
  8. [sair]: ''')
  9. if escolha == 1:
  10. print('eu tenho algumas coisas em meu estoque')
  11. print(f'1.[{i1}] 2.[{i2}] 3.[{i3}]')
  12. time.sleep(1)
  13. escolha1 = int(input('o que você vai querer?: '))
  14. elif escolha == 2:
  15. print('você saiu da loja')
  16.  
  17.  
  18. loja('a',10,'b',10,'c',10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement