Help for a complete newbie

Steve Bergman steve at rueb.com
Fri Apr 14 22:32:56 EDT 2006


The indentation is wrong.  Python cares about indentation.


print " "
print "This \"autotp\" program will create raw bitmap test pattern
images."
print " "
print "Please read the information below thoroughly:"
print " "
print "1. Graphic files MUST be TIFF images."
print "2. Images MUST have been ripped though a Nuvera system as a
Print
and Save job"
print "3. Images should already be named with the desired file name."
print "4. The Lead Edge and file name should be identified in the
image."
print "5. The name includes the purpose for, resolution of, side, and
paper size"
print "6. Images should be rotated to print correctly from Service
Diagnostics."
print " "
print "EXAMPLE: Bypass_BFM_Damage_1200x1200_Letter.tif"
print " "

# Get the decision if operator is ready
ready = raw_input("Ready to proceed ? TYPE (y)es or (n)o: ")

if ready  == "y":
        print "You are Ready"
else:
        print "Try again"




More information about the Python-list mailing list