«except» etiketlenmiş sorular

11
python istisna mesajı yakalama
import ftplib import urllib2 import os import logging logger = logging.getLogger('ftpuploader') hdlr = logging.FileHandler('ftplog.log') formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s') hdlr.setFormatter(formatter) logger.addHandler(hdlr) logger.setLevel(logging.INFO) FTPADDR = "some ftp address" def upload_to_ftp(con, filepath): try: f = open(filepath,'rb') # file to send con.storbinary('STOR '+ filepath, f) # Send the file f.close() # Close file …


4
Try-exclude bloğu ile python "with" ifadesini kullanma
Python "with" ifadesini bir try-exclude bloğu ile birlikte kullanmanın doğru yolu bu mu ?: try: with open("file", "r") as f: line = f.readline() except IOError: <whatever> Eğer öyleyse, bir şeyleri yapmanın eski yöntemini düşünün: try: f = open("file", "r") line = f.readline() except IOError: <whatever> finally: f.close() Buradaki "ile" ifadesinin …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.