Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/python
- def Criar_e_fechar(opcao,namefile,txt):
- if opcao == 1:
- print "Arquivo Criado Com Sucesso ! ", namefile
- arquivo = open(namefile,"w+")
- arquivo.write(txt)
- arquivo.close()
- if opcao == 2:
- print "Arquivo Fechado com Sucesso !",namefile
- arquivo = open(namefile,"r")
- texto = arquivo.read()
- print "\tText: [%s]" % texto
- arquivo.close()
- def menu():
- menu = "0 - sair\n1 - criar arquivo\n2 - ler arquivo\n: "
- while True:
- n = int(raw_input(menu))
- if n == 0:
- print "FLWS"
- break
- if n == 1:
- nome_do_arquivo = raw_input("Nome arquivo: ")
- texto = raw_input("texto: ")
- Criar_e_fechar(1,nome_do_arquivo,texto)
- if n == 2:
- nome_do_arquivo = raw_input("Nome arquivo: ")
- Criar_e_fechar(2,nome_do_arquivo,False)
- menu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement