サマリー
Returns a list of available printers on the local computer.
構文
ListPrinterNames ()
| データ タイプ | 説明 | 
| String | Returns a list containing the printer names available to the script. | 
コードのサンプル
Returns a list of printer names available to session.
import arcpy
# Print available printers
printers = arcpy.ListPrinterNames()
for printer in printers:
    print(printer)