python 目次 - ray88’s diary
■要素の個数は len( ) で数えることができる。
fruit = {"apple":2,"orange":8,"mango":2,"peach":1} num_items = len(fruit) #ディクショナリの要素の個数を取得 print(num_items)
出力結果
python 目次 - ray88’s diary
■要素の個数は len( ) で数えることができる。
fruit = {"apple":2,"orange":8,"mango":2,"peach":1} num_items = len(fruit) #ディクショナリの要素の個数を取得 print(num_items)
出力結果