「python入門」clear()で要素を削除する 2018年8月9日サンプルコード cft= list(range(6)) print(cft) # [0, 1, 2, 3, 4, 5] cft.clear() print(cft) # [] PythonPosted by arkgame