“Fichier d'impression Python” Réponses codées

Fichier d'impression Python

import sys

# only this print call will write in the file
print("Hello Python!", file=open('output.txt','a'))

# not this one (std output)
print("Not written")

# any further print will be done in the file
sys.stdout = open('output.txt','wt')
print("Hello Python!")
VasteMonde

Comment écrire dans un fichier de sortie dans Pytion

#first arg is the name of the file
#second arg notes that the file is open to write to it
outputFile = open("fileName", "w")
#next line writes to the file
outputFile.write(str)
#remember to close opened files
outputFile.close()
NitroPog

python ouvrir et lire le fichier avec

with open('pagehead.section.htm','r') as f:
    output = f.read()
Good Goshawk

avec ouvert comme fichier python

>>> with open('workfile') as f:
...     read_data = f.read()

>>> # We can check that the file has been automatically closed.
>>> f.closed
True
Powerful Platypus

Fichier d'impression en Python

GHOSTSCRIPT_PATH = "C:\\path\\to\\GHOSTSCRIPT\\bin\\gswin32.exe"
GSPRINT_PATH = "C:\\path\\to\\GSPRINT\\gsprint.exe"

# YOU CAN PUT HERE THE NAME OF YOUR SPECIFIC PRINTER INSTEAD OF DEFAULT
currentprinter = win32print.GetDefaultPrinter()

win32api.ShellExecute(0, 'open', GSPRINT_PATH, '-ghostscript "'+GHOSTSCRIPT_PATH+'" -printer "'+currentprinter+'" "PDFFile.pdf"', '.', 0)
Iniyan V

Réponses similaires à “Fichier d'impression Python”

Questions similaires à “Fichier d'impression Python”

Plus de réponses similaires à “Fichier d'impression Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code