Skip to content

Commit b50b25c

Browse files
authored
Merge pull request #15 from suavecode/python3_print_update
Updated print statements for Python 3
2 parents 43e0c11 + 2031833 commit b50b25c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Regional_Jet_Optimization/Optimize.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def main():
4343
#output = scipy_setup.SciPy_Solve(problem,solver='SLSQP')
4444
#print output
4545

46-
print 'fuel burn = ', problem.summary.base_mission_fuelburn
47-
print 'fuel margin = ', problem.all_constraints()
46+
print('fuel burn = ', problem.summary.base_mission_fuelburn)
47+
print('fuel margin = ', problem.all_constraints())
4848

4949
Plot_Mission.plot_mission(problem)
5050

0 commit comments

Comments
 (0)