Merge pull request #271 from cclauss/patch-6

from __future__ import print_function For Python 3
This commit is contained in:
Harshil 2018-03-19 09:00:46 +05:30 committed by GitHub
commit 3899f9b507
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -8,6 +8,8 @@ method 2:
"Simpson Rule" "Simpson Rule"
''' '''
from __future__ import print_function
def method_2(boundary, steps): def method_2(boundary, steps):
# "Simpson Rule" # "Simpson Rule"
@ -41,7 +43,7 @@ def main():
steps = 10.0 #define number of steps or resolution steps = 10.0 #define number of steps or resolution
boundary = [a, b] #define boundary of integration boundary = [a, b] #define boundary of integration
y = method_2(boundary, steps) y = method_2(boundary, steps)
print 'y = {0}'.format(y) print('y = {0}'.format(y))
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@ -7,6 +7,7 @@ method 1:
"extended trapezoidal rule" "extended trapezoidal rule"
''' '''
from __future__ import print_function
def method_1(boundary, steps): def method_1(boundary, steps):
# "extended trapezoidal rule" # "extended trapezoidal rule"
@ -39,7 +40,7 @@ def main():
steps = 10.0 #define number of steps or resolution steps = 10.0 #define number of steps or resolution
boundary = [a, b] #define boundary of integration boundary = [a, b] #define boundary of integration
y = method_1(boundary, steps) y = method_1(boundary, steps)
print 'y = {0}'.format(y) print('y = {0}'.format(y))
if __name__ == '__main__': if __name__ == '__main__':
main() main()