Day 9_資料型態(Data Types)- 布林 (Boolean)、串列 (Lists)
9-1. 布林
式子:
x = True
y = False
print(x and y)
print(x or y)
print(type(x))
結果:
False
True
<class 'bool'>
9-2. 串列
9-2-1. 串列(同類型)
式子:
a = [1, 2, 3, 4, 5, 6, 7, 8]
print(a)
print(type(a))
結果:
[1, 2, 3, 4, 5, 6, 7, 8]
<class 'list'>
9-2-2. 串列(不同類型)
式子:
b = [1, 'Hello', True]
print(b)
print(type(b))
結果:
[1, 'Hello', True]
<class 'list'>