モナーのパイソンでゴーゴー

湘南あたりの海辺より

2020-04-30から1日間の記事一覧

(*´ω`)数学的な処理はimport math を使う

【実行結果】 【解説】 まず数学的な処理をするのでimport mathをします。 円周率を表示するのでmath.piをします。 小数点切り捨てはmath.flootです。 小数点切り下げはmath.ceilです。 【コード】 import math #print('円周率は{}です'.format(math.pi)) #p…