MCPcopy Create free account
hub / github.com/ActiveState/code / getScale1

Function getScale1

recipes/Python/271246_pyAlbumpy/recipe-271246.py:355–365  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

353 title = raw_input("Enter a title for the album: ")
354
355 def getScale1():
356 global scale1
357 scale1 = raw_input("Enter scaling factor for Thumbnails: ")
358 try:
359 scale1 = float(scale1)
360 except ValueError:
361 print "Invalid value entered!"
362 getScale1()
363 if scale1 > 1.0:
364 print "Scaling factor should be less than 1!"
365 getScale1()
366 getScale1()
367
368 def getScale2():

Callers 2

getScale1Method · 0.85
recipe-271246.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected