「python入門」clear()で要素を削除する 2018年8月9日サンプルコード cft= list(range(6)) print(cft) # [0, 1, 2, 3, 4, 5] cft.clear() print(cft) # [] 関連投稿: 「Python」エスケープシーケンスを使用するサンプル 「Python」コンストラクタを使うサンプル 「Python」set()メソッドでリストをセットに変換するサンプル 「Python」index()メソッドで文字列の先頭から検索するサンプル PythonPosted by arkgame