2019年10月18日金曜日

開発環境

Practical Programming: An Introduction to Computer Science Using Python 3.6 (Paul Gries(著)、Jennifer Campbell(著)、Jason Montojo(著)、Pragmatic Bookshelf)のChapter 6(A Modular Approach to Program Organization)、Exercises 1の解答を求めてみる。

コード

Python 3

#!/usr/bin/env python3
import math

print('1.')

print('a.')
print(math.floor(-2.8))

print('b.')
print(abs(round(-4.3)))

print('c.')
print(math.ceil(math.sin(34.5)))

入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))

% ./sample1.py 
1.
a.
-3
b.
4
c.
1
%

0 コメント:

コメントを投稿