소스 파일명: testWhile.py # coding=euc-kr # Filename: testWhile.py # # Purpose: Example using the while loop syntax # while .... # # Execute: python testWhile.py -200 300 # import sys # 사용법 표시 def printUsage(): print "Using: python testWhile.py [integer1] [integer2]" print "This finds the greatest common divisor of the given two integers." if len(sys.argv) != 3: printUsage() sys.exit(1) # -----------..