I am trying to write a program that makes a document automatically with the past information

Asked

Viewed 19 times

0

I’m trying to make the script but I don’t know how to structure and create the pdf file, gathering all the information passed via raw_input():

from pip._vendor.distlib.compat import raw_input
import fileinput

enderecamento = raw_input("Digitar Endereçamento Aqui: ")
print("Dados Do Autor")
nome = raw_input("Digitar Nome Do Autor Aqui: ")
nacionalidade = raw_input("Nacionalidade Autor: ")
estado_civil = raw_input("Estado Civil Do Autor: ")
cargo = raw_input("Cargo do Autor: ")
cpf = raw_input("CPF do Autor: ")
residencia = raw_input("Residencia do Autor: ")
print (" ")
'Dados Dos Acusados'
print (" ")
nome2 = raw_input("Digitar Nome do Cusado Aqui: ")
nacionalidade2 = raw_input("Nacionalidade do Acusado: ")
estado_civil2 = raw_input("Estado Civil do Acusado: ")
cargo2 = raw_input(" Cargo do Acusado Aqui: ")
cpf2 = raw_input("CPF do Acusado: ")
residencia2 = raw_input("Residencia do Acusado: ")
acusacao = raw_input("Acusação: ")
fatos = raw_input("Digite os fatos: ")
  • Welcome. Please improve your question with more information and what the actual purpose, put in the tags to which language you refer, etc.

  • is to create Uridicas pieces

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.