最終更新:2021-04-19 (月) 04:57:28 (1104d)  

Python/タプル
Top / Python / タプル

  • Python/Tuple?

Python/シンタックスシュガー

メモ

  • 要素数が1のタプルは末尾にカンマが付く
  • これはstr
    t = ('hello')
  • これはタプル
    t = ('hello',)