1 2 3 4 5 |
a = {"fruits": ["apple", "orange", "banana", "strawberry", "kiwifruit"], "year": [2001, 2002, 2001, 2008, 2006], "amount": [1, 4, 5, 6, 3]} print(a) |
{‘fruits’: [‘apple’, ‘orange’, ‘banana’, ‘strawberry’, ‘kiwifruit’], ‘year’: [2001, 2002, 2001, 2008, 2006], ‘amount’: [1, 4, 5, 6, 3]}
コメントを残す