From: W. Trevor King Date: Fri, 26 Oct 2012 18:45:11 +0000 (-0400) Subject: plot_image.py: use modern print() syntax everywhere X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7bc574aaa10a5d9e6702580f0402dc477c428830;p=assignment-template.git plot_image.py: use modern print() syntax everywhere --- diff --git a/src/plot_image/plot_image.py b/src/plot_image/plot_image.py index 8510e8e..fffab70 100755 --- a/src/plot_image/plot_image.py +++ b/src/plot_image/plot_image.py @@ -263,14 +263,14 @@ def main(argv=None): raise Exception('no color map named %s in %s' % (options.cmap, ', '.join(maps))) - print 'Plot_image' - print 'Title: ', options.title + print('Plot_image') + print('Title: {0}'.format(options.title)) if not options.xyz: - print 'Image size: ', nx, ny + print('Image size: {0} {1}'.format(nx, ny)) if options.contours: - print '# countour lines: ', options.contours + print('# countour lines: {0}'.format(options.contours)) else: - print 'False color' + print('False color') if options.input: fin = open(options.input, 'r') else: