Python,入門,標準ライブラリ

number
数値

基本的な数字の取り扱い方と表示の方法

足し算・引き算・掛け算・割り算・商・余りの計算

# 数値を表示するprint(2)# 2print(3 + 1)# 4print(8 - 2)# 6print( ...