LoginSignup
1
0

Pythonで「タプルの長さ(要素数)を取得する」の動作を確認してみた

Posted at

概要

Pythonで「タプルの長さ(要素数)を取得する」の動作を確認してみました。以下のページを参考にしました。

実装

以下のファイルを作成しました。

sample.py
print(len(("Red", "Blue", "Green")))
print(len((10, 20, 30, 40, 50)))

animallist = ("Monkey", "Cat", "Dog", "Cow")
print("要素数は " + str(len(animallist)) + " です。")

以下のコマンドを実行しました。

$ python3 sample.py 
3
5
要素数は 4 です。

まとめ

何かの役に立てばと。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0