「Python入門」配列の要素のインデックスを取得する

2019年2月2日

サンプルコード

cft = ['a', 'b', 'new', 'D', 'z', 'example', 'new', 'two', 'elements']
print cft.index("example")
print cft.index("new")
print cft.index("z")
print "c" in cft

結果
5
2
4
False

Python

Posted by arkgame