「python入門」clear()で要素を削除する

サンプルコード
cft= list(range(6))
print(cft)
# [0, 1, 2, 3, 4, 5]

cft.clear()
print(cft)
# []

Python

Posted by arkgame