「python入門」append()で末尾に要素を追加するサンプル

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

cft.append(10)
print(l)
# [0, 1, 2, 3,10]

cft.append('oosa’)
print(cft)
# [0, 1, 2, 3,10, 'oosa’]

Python

Posted by arkgame