copipe Python
copipe Python | 2つの数字の大きいほうを選ぶ。
概要
max(数字1,数字2)を使うと、2つの数字の大きいほうを選ぶことができる。
コード
x = max(3,6) print(x)
結果
6