「python入門」append()の使い方

2018年5月6日

pythonコード:
#!/usr/bin/python

cftLst = [789, 'sample’, 'testdata’, 'prevent’];
cftLst.append( 2017 );
print “Updated List : “, cftLst;

実行結果:
Updated List : [789, 'sample’, 'testdata’, 'prevent’, 2017]

Python

Posted by arkgame