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 2014-05-29 07:10

Click here to get the file

Size 1 kB - File type text/python-source

File contents

import os
f = open("pessoas.txt", "r")
dic = {}
for linha in f:
    pos = linha.find(" ")
    identidade = linha[:pos]
    nome = linha[pos+1:-1]
    dic[identidade] = nome
pasta = os.getcwd()
print "Pasta atual: "+ pasta
f.close()

print dic
for chave, valor in dic.iteritems():
    print "Identidade: %s\tNome: %s"%(chave, valor)
    

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: