Python 整数化とか 正の数 >>> 10 / 3 3.3333333333333335 >>> int(10 / 3) 3 >>> 10 // 3 3 >>> math.trunc(10 / 3) 3 >>... 2020.05.19 Python
Python Pythonの画面クリア Pythonのコンソールクリア import os os.system('cls') 「0」が返ってくるので import os tmp = os.system('cls') でとりあえず、「0」は消... 2020.05.18 Python