Day 10_資料型態(Data Types)- 元組 (Tuples)、集合 (Sets) 、字典 (Dictionary)
10-1. 元組型態
式子:
t = (5,'program', 1+3j)
print(t)
print(type(t))
結果:
(5, 'program', (1+3j))
<class 'tuple'>
10-2. 集合 (Sets)
10-2-1. 重複的項目不會列印
式子:
a = {1, 2, 3, 1, 4, 5, 5}
print(a)
print(type(a))
結果:
{1, 2, 3, 4, 5}
<class 'set'>
10-2-2. 集合與串列的差異
式子:
b = {1,2,3,3,4,5}
print(b)
c = [1,2,2,3,4,5]
print(c)
結果:
{1, 2, 3, 4, 5}
[1, 2, 2, 3, 4, 5]
10-3. 字典中的每個項目都是 key:value 所形式
式子:
student = {'age':18, 'name':'Simple Learn'}
print(student)
print(type(student))
結果:
{'age': 18, 'name': 'Simple Learn'}
<class 'dict'>