Ministério da Educação
Brasil um país de todos
Personal tools
Navigation
Log in


Forgot your password?
 
Document Actions

slides10-ex2.py

by Cicero Garrozi last modified 2015-10-15 08:05

Click here to get the file

Size 1 kB - File type text/python-source

File contents

cpf = ""
pessoas = {}
while cpf != "0":
    cpf = str(input("Digite o CPF ou 0 para sair: "))
    if cpf == "0":
        break
    nome = str(input("Digite o nome: "))
    idade = int(input("Digite a idade: "))
    telefone = str(input("Digite o telefone: "))
    pessoas[cpf] = {'nome': nome, 'idade':idade, 'telefone':telefone}

for p in pessoas:
	print("CPF: %s, o nome da pessoa e %s, ela tem %d anos e o telefone e %s"
              %(p,pessoas[p]['nome'],pessoas[p]['idade'],pessoas[p]['telefone']))

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: